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