]> git.draconx.ca Git - upkg.git/blobdiff - src/module.c
uobject: Namespace changes.
[upkg.git] / src / module.c
index ffc06e292ad300aaeb0a841d8428ccd8eee7c761..2eeffc07e30857944e5efe81d08ebbe6b947d10f 100644 (file)
@@ -50,7 +50,7 @@ static int modcmp(const void *a, const void *b, void *_data)
        return strcmp(ma->name, mb->name);
 }
 
-int uobject_module_init(void)
+int u_object_module_init(void)
 {
        if (!initialized) {
                package_tree = avl_create(modcmp, NULL, NULL);
@@ -66,7 +66,7 @@ int uobject_module_init(void)
        return 0;
 }
 
-int uobject_module_exit(void)
+int u_object_module_exit(void)
 {
        if (--initialized)
                return 0;
@@ -76,7 +76,7 @@ int uobject_module_exit(void)
        return 0;
 }
 
-GType uobject_module_get_class(const char *package, const char *class)
+GType u_object_module_get_class(const char *package, const char *class)
 {
        char buf[strlen(package) + strlen(class) + 1];
        GTypeModule search = { .name = str_cpy_lower(buf, package) };