]> git.draconx.ca Git - upkg.git/blobdiff - src/exportable.c
module: add missing return value to module_exit.
[upkg.git] / src / exportable.c
index 8947fcc44d005b83f580b1ef0b1efa88fe829918..c22a448bf97e6970512394f1877282b490733a45 100644 (file)
@@ -2,30 +2,30 @@
 #include <glib-object.h>
 #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);
 }