X-Git-Url: https://git.draconx.ca/gitweb/upkg.git/blobdiff_plain/37a77c2825545435cfb3093eae1995efd35c20ba..3896f18892f87f3c354cb47965c4064d3ff26f5d:/src/exportable.c diff --git a/src/exportable.c b/src/exportable.c index 03349f5..5553014 100644 --- a/src/exportable.c +++ b/src/exportable.c @@ -19,9 +19,9 @@ #include #include -#include "exportable.h" +#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); }