X-Git-Url: https://git.draconx.ca/gitweb/upkg.git/blobdiff_plain/b228d2b354248b62d70a582a37693cff829fe0c6..HEAD:/src/uobject/package.c diff --git a/src/uobject/package.c b/src/uobject/package.c index 397d263..30a42cc 100644 --- a/src/uobject/package.c +++ b/src/uobject/package.c @@ -1,21 +1,22 @@ /* - * upkg: tool for manipulating Unreal Tournament packages. - * Copyright (C) 2009 Nick Bowler + * upkg: tool for manipulating Unreal Tournament packages. + * Copyright © 2009-2011, 2022 Nick Bowler * - * 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 3 of the License, or - * (at your option) any later version. + * 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 3 of the License, or + * (at your option) any later version. * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * 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, see . + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . */ +#include #include #include #include @@ -157,3 +158,10 @@ GTypeModule *u_pkg_open(const char *name) mod->name = str_cpy_lower(pkgname, name); return mod; } + +int u_pkg_is_native(GTypeModule *m) +{ + struct upkg_priv *priv = U_PKG_GET_PRIV(m); + + return !!priv->native; +}