X-Git-Url: https://git.draconx.ca/gitweb/upkg.git/blobdiff_plain/c5c6df2eb7c99ad0a82b20f584920d9018b1d3a2..1f5b72d49e29a126b35385a6277b411b1f97fbf5:/src/uobject/exportable.h diff --git a/src/uobject/exportable.h b/src/uobject/exportable.h index d3e9ce8..4033a1a 100644 --- a/src/uobject/exportable.h +++ b/src/uobject/exportable.h @@ -20,7 +20,7 @@ #define U_OBJECT_EXPORTABLE_H_ #include -#include +#include #define U_TYPE_OBJECT_EXPORTABLE (u_object_exportable_get_type()) #define U_OBJECT_EXPORTABLE(obj) G_TYPE_CHECK_INSTANCE_CAST(obj, \ @@ -39,8 +39,8 @@ typedef struct UObjectExportableIface UObjectExportableIface; struct UObjectExportableIface { GTypeInterface parent; - int (*export)(GObject *obj, FILE *f); - int (*export_name)(GObject *obj, char *buf, size_t n); + int (*export)(UObject *obj, FILE *f); + int (*export_name)(UObject *obj, char *buf, size_t n); }; GType u_object_exportable_get_type(void);