-#ifdef __cplusplus
-extern "C" {
-#endif /* __cplusplus */
-
-
-#define GTK_MYFIXED(obj) GTK_CHECK_CAST (obj, gtk_myfixed_get_type (), GtkMyFixed)
-#define GTK_MYFIXED_CLASS(klass) GTK_CHECK_CLASS_CAST (klass, gtk_myfixed_get_type (), GtkMyFixedClass)
-#define GTK_IS_MYFIXED(obj) GTK_CHECK_TYPE (obj, gtk_myfixed_get_type ())
-
-
-typedef struct _GtkMyFixed GtkMyFixed;
-typedef struct _GtkMyFixedClass GtkMyFixedClass;
-typedef struct _GtkMyFixedChild GtkMyFixedChild;
-
-struct _GtkMyFixed
-{
- GtkContainer container;
- GList *children;
-#if (GTK_MINOR_VERSION > 0)
- GtkShadowType shadow_type;
-#endif
-};
-
-struct _GtkMyFixedClass