gtkborder: restore original struct definition

We're going to add back the original struct definition removed by
a6e4de28, because using the typedef breaks all sorts of things like
gtkmm and WebKit, and having separate struct definitions allows us to
change the types in GdkBorder from gint16s to gints without breaking
ABI.
This commit is contained in:
William Hua 2015-12-17 12:18:03 -05:00
parent 8c355d8fe6
commit 5190d010d9

View File

@ -34,6 +34,8 @@
G_BEGIN_DECLS
typedef struct _GtkBorder GtkBorder;
#define GTK_TYPE_BORDER (gtk_border_get_type ())
/**
@ -46,7 +48,13 @@ G_BEGIN_DECLS
* A struct that specifies a border around a rectangular area
* that can be of different width on each side.
*/
typedef GdkBorder GtkBorder;
struct _GtkBorder
{
gint16 left;
gint16 right;
gint16 top;
gint16 bottom;
};
GDK_AVAILABLE_IN_ALL
GType gtk_border_get_type (void) G_GNUC_CONST;