X-Git-Url: https://git.draconx.ca/gitweb/upkg.git/blobdiff_plain/bb9c28745ae254b832805e5d41f2a5e6c3cb8f40..1f5b72d49e29a126b35385a6277b411b1f97fbf5:/src/uobject/loadable.h diff --git a/src/uobject/loadable.h b/src/uobject/loadable.h index e5de5ad..d862583 100644 --- a/src/uobject/loadable.h +++ b/src/uobject/loadable.h @@ -19,18 +19,17 @@ #ifndef U_OBJECT_LOADABLE_H_ #define U_OBJECT_LOADABLE_H_ -#include -#include +#include -#define U_OBJECT_TYPE_LOADABLE (u_object_loadable_get_type()) +#define U_TYPE_OBJECT_LOADABLE (u_object_loadable_get_type()) #define U_OBJECT_LOADABLE(obj) G_TYPE_CHECK_INSTANCE_CAST(obj, \ - U_OBJECT_TYPE_LOADABLE, UObjectLoadable) + U_TYPE_OBJECT_LOADABLE, UObjectLoadableIface) #define U_OBJECT_IS_LOADABLE(obj) G_TYPE_CHECK_INSTANCE_TYPE(obj, \ - U_OBJECT_TYPE_LOADABLE) + U_TYPE_OBJECT_LOADABLE) #define U_OBJECT_LOADABLE_GET_INTERFACE(inst) G_TYPE_INSTANCE_GET_INTERFACE \ - (inst, U_OBJECT_TYPE_LOADABLE, UObjectLoadable) + (inst, U_TYPE_OBJECT_LOADABLE, UObjectLoadableIface) -typedef struct UObjectLoadable UObjectLoadable; +typedef struct UObjectLoadableIface UObjectLoadableIface; /* * Interface for UObjects supporting "load" and "unload". These are generally @@ -38,11 +37,11 @@ typedef struct UObjectLoadable UObjectLoadable; * useful -- textures and sounds, for example -- where you might want to keep * around instances but the actual texture or sound data is not needed. */ -struct UObjectLoadable { +struct UObjectLoadableIface { GTypeInterface parent; - int (*load)(GObject *obj); - void (*unload)(GObject *obj); + int (*load)(UObject *obj); + void (*unload)(UObject *obj); }; GType u_object_loadable_get_type(void);