]> git.draconx.ca Git - upkg.git/blobdiff - src/uobject/exportable.h
uobject: More namespace cleanups.
[upkg.git] / src / uobject / exportable.h
index da4c719b97fe136d2a751d5e7d47c717811a68f4..931d5b94a4010895b8d870d3090419837d7be0ef 100644 (file)
 #include <stdio.h>
 #include <glib-object.h>
 
-#define U_OBJECT_TYPE_EXPORTABLE (u_object_exportable_get_type())
-#define U_OBJECT_EXPORTABLE(obj) G_TYPE_CHECK_INSTANCE_CAST(obj, \
-       U_OBJECT_TYPE_EXPORTABLE, UObjectExportable)
-#define U_OBJECT_IS_EXPORTABLE(obj) G_TYPE_CHECK_INSTANCE_TYPE(obj, \
-       U_OBJECT_TYPE_EXPORTABLE)
-#define U_OBJECT_EXPORTABLE_GET_INTERFACE(inst) G_TYPE_INSTANCE_GET_INTERFACE \
-       (inst, U_OBJECT_TYPE_EXPORTABLE, UObjectExportable)
+#define UOBJECT_TYPE_EXPORTABLE (uobject_exportable_get_type())
+#define UOBJECT_EXPORTABLE(obj) G_TYPE_CHECK_INSTANCE_CAST(obj, \
+       UOBJECT_TYPE_EXPORTABLE, UObjectExportable)
+#define UOBJECT_IS_EXPORTABLE(obj) G_TYPE_CHECK_INSTANCE_TYPE(obj, \
+       UOBJECT_TYPE_EXPORTABLE)
+#define UOBJECT_EXPORTABLE_GET_INTERFACE(inst) G_TYPE_INSTANCE_GET_INTERFACE \
+       (inst, UOBJECT_TYPE_EXPORTABLE, UObjectExportable)
 
 typedef struct UObjectExportable UObjectExportable;
 
@@ -40,9 +40,9 @@ struct UObjectExportable {
        int (*export_name)(GObject *obj, char *buf, size_t n);
 };
 
-GType u_object_exportable_get_type(void);
+GType uobject_exportable_get_type(void);
 
-int u_object_export(GObject *obj, FILE *f);
-int u_object_export_name(GObject *obj, char *buf, size_t n);
+int uobject_export(GObject *obj, FILE *f);
+int uobject_export_name(GObject *obj, char *buf, size_t n);
 
 #endif