X-Git-Url: http://git.draconx.ca/gitweb/upkg.git/blobdiff_plain/3896f18892f87f3c354cb47965c4064d3ff26f5d..4a3125b61348969b91b9642bba803fc17135c189:/src/module.c diff --git a/src/module.c b/src/module.c index ffc06e2..d7db268 100644 --- a/src/module.c +++ b/src/module.c @@ -2,9 +2,9 @@ * upkg: tool for manipulating Unreal Tournament packages. * Copyright (C) 2009 Nick Bowler * - * This program is free software; you can redistribute it and/or modify + * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or + * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, @@ -13,8 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * along with this program. If not, see . */ #include @@ -50,7 +49,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 +65,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 +75,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) };