X-Git-Url: https://git.draconx.ca/gitweb/upkg.git/blobdiff_plain/0b66ccda847802bdc7ba4755743031c323df4b7e..b46bbe4f64a68fdec38675690f9576c2cbdf4cd3:/src/exportable.c diff --git a/src/exportable.c b/src/exportable.c index 8947fcc..c22a448 100644 --- a/src/exportable.c +++ b/src/exportable.c @@ -2,30 +2,30 @@ #include #include "exportable.h" -GType upkg_exportable_get_type(void) +GType u_object_exportable_get_type(void) { static GType type = 0; if (type == 0) { static const GTypeInfo info = { - sizeof (UPkgExportable), + sizeof (UObjectExportable), NULL, NULL, }; type = g_type_register_static(G_TYPE_INTERFACE, - "UPkgExportable", &info, 0); + "UObjectExportable", &info, 0); } return type; } -int upkg_export(GObject *obj, FILE *f) +int u_object_export(GObject *obj, FILE *f) { - g_return_val_if_fail(UPKG_IS_EXPORTABLE(obj), -1); - return UPKG_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 upkg_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(UPKG_IS_EXPORTABLE(obj), -1); - return UPKG_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); }