summaryrefslogtreecommitdiffstats
path: root/ganv/module.h
diff options
context:
space:
mode:
Diffstat (limited to 'ganv/module.h')
-rw-r--r--ganv/module.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/ganv/module.h b/ganv/module.h
index 2e350a6..3ee94b5 100644
--- a/ganv/module.h
+++ b/ganv/module.h
@@ -31,7 +31,7 @@ G_BEGIN_DECLS
#define GANV_MODULE_GET_CLASS(obj) (GTK_CHECK_GET_CLASS((obj), GANV_TYPE_MODULE, GanvModuleClass))
typedef struct _GanvModuleClass GanvModuleClass;
-typedef struct _GanvModuleImpl GanvModuleImpl;
+typedef struct _GanvModuleImpl GanvModuleImpl;
typedef void (*GanvPortFunc)(GanvPort* port, void* data);
@@ -42,9 +42,12 @@ struct _GanvModule {
struct _GanvModuleClass {
GanvBoxClass parent_class;
+
+ /* Reserved for future expansion */
+ gpointer spare_vmethods [4];
};
-GType ganv_module_get_type(void);
+GType ganv_module_get_type(void) G_GNUC_CONST;
GanvModule*
ganv_module_new(GanvCanvas* canvas,