mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 01:55:35 +00:00
6f04d85cee
property. * glue/layout.c: New file, adding glue for getting the bin_window of a GtkLayout. svn path=/trunk/gtk-sharp/; revision=16048
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;
|
|
}
|
|
|
|
|