Add some padding to the class.

Sat Feb 23 13:28:56 2002  Owen Taylor  <otaylor@redhat.com>

        * gtypeplugin.h (struct _GTypePluginClass): Add some
        padding to the class.

        * gclosure.h (struct _GClosure): Fix typo in comment.
This commit is contained in:
Owen Taylor 2002-02-23 20:08:13 +00:00 committed by Owen Taylor
parent 63e9982ace
commit 600f880935
3 changed files with 14 additions and 1 deletions

View File

@ -1,3 +1,10 @@
Sat Feb 23 13:28:56 2002 Owen Taylor <otaylor@redhat.com>
* gtypeplugin.h (struct _GTypePluginClass): Add some
padding to the class.
* gclosure.h (struct _GClosure): Fix typo in comment.
2002-02-20 Tor Lillqvist <tml@iki.fi>
* gobject.def: Add g_value_set_object_take_ownership and

View File

@ -66,7 +66,7 @@ struct _GClosure
/*< private >*/ guint in_inotify : 1;
/*< private >*/ guint floating : 1;
/*< protected >*/ guint derivative_flag : 1;
/*< puplic >*/ guint in_marshal : 1;
/*< public >*/ guint in_marshal : 1;
/*< public >*/ guint is_invalid : 1;
/*< private >*/ void (*marshal) (GClosure *closure,

View File

@ -53,6 +53,12 @@ struct _GTypeModuleClass
gboolean (* load) (GTypeModule *module);
void (* unload) (GTypeModule *module);
/* Padding for future expansion */
void (*reserved1) (void);
void (*reserved2) (void);
void (*reserved3) (void);
void (*reserved4) (void);
};
GType g_type_module_get_type (void);