mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 11:55:38 +00:00
20 lines
349 B
C
20 lines
349 B
C
|
/* layout.c: Glue to access fields in GtkLayout.
|
||
|
*
|
||
|
* Author: Ettore Perazzoli <ettore@perazzoli.org>
|
||
|
*
|
||
|
* Copyright (C) 2003 Ettore Perazzoli
|
||
|
*/
|
||
|
|
||
|
#include <gtk/gtklayout.h>
|
||
|
|
||
|
|
||
|
GdkWindow *gtksharp_gtk_layout_get_bin_window (GtkLayout *layout);
|
||
|
|
||
|
GdkWindow *
|
||
|
gtksharp_gtk_layout_get_bin_window (GtkLayout *layout)
|
||
|
{
|
||
|
return layout->bin_window;
|
||
|
}
|
||
|
|
||
|
|