X-Git-Url: http://git.draconx.ca/gitweb/upkg.git/blobdiff_plain/3896f18892f87f3c354cb47965c4064d3ff26f5d..0438ce1525f7c1e722140c046fccb0f686b4cab2:/src/exportable.c diff --git a/src/exportable.c b/src/exportable.c index 5553014..8bda850 100644 --- a/src/exportable.c +++ b/src/exportable.c @@ -21,7 +21,7 @@ #include #include -GType uobject_exportable_get_type(void) +GType u_object_exportable_get_type(void) { static GType type = 0; if (type == 0) { @@ -37,14 +37,14 @@ GType uobject_exportable_get_type(void) return type; } -int uobject_export(GObject *obj, FILE *f) +int u_object_export(GObject *obj, FILE *f) { - g_return_val_if_fail(UOBJECT_IS_EXPORTABLE(obj), -1); - return UOBJECT_EXPORTABLE_GET_INTERFACE(obj)->export(obj, f); + g_return_val_if_fail(U_OBJECT_IS_EXPORTABLE(obj), -1); + return U_OBJECT_EXPORTABLE_GET_INTERFACE(obj)->export(obj, f); } -int uobject_export_name(GObject *obj, char *buf, size_t n) +int u_object_export_name(GObject *obj, char *buf, size_t n) { - g_return_val_if_fail(UOBJECT_IS_EXPORTABLE(obj), -1); - return UOBJECT_EXPORTABLE_GET_INTERFACE(obj)->export_name(obj, buf, n); + g_return_val_if_fail(U_OBJECT_IS_EXPORTABLE(obj), -1); + return U_OBJECT_EXPORTABLE_GET_INTERFACE(obj)->export_name(obj, buf, n); }