X-Git-Url: https://git.draconx.ca/gitweb/upkg.git/blobdiff_plain/c6537566467e27e40028254b4c7da145417682cf..0dc1fb4639524c1a1846e32fa7437605c65a9b72:/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); }