]> git.draconx.ca Git - upkg.git/blob - src/uobject/package.h
Improve GOB rebuild rules for VPATH builds.
[upkg.git] / src / uobject / package.h
1 /*
2  *  upkg: tool for manipulating Unreal Tournament packages.
3  *  Copyright © 2009-2011 Nick Bowler
4  *
5  *  This program is free software: you can redistribute it and/or modify
6  *  it under the terms of the GNU General Public License as published by
7  *  the Free Software Foundation, either version 3 of the License, or
8  *  (at your option) any later version.
9  *
10  *  This program is distributed in the hope that it will be useful,
11  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  *  GNU General Public License for more details.
14  *
15  *  You should have received a copy of the GNU General Public License
16  *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  */
18
19 #ifndef U_OBJECT_PACKAGE_H_
20 #define U_OBJECT_PACKAGE_H_
21
22 #include <glib-object.h>
23 #include <stdbool.h>
24
25 #define U_PKG_TYPE (u_pkg_get_type())
26 #define U_PKG(obj) \
27         G_TYPE_CHECK_INSTANCE_CAST(obj, U_PKG_TYPE, UPkg)
28 #define U_PKG_CLASS(class) \
29         G_TYPE_CHECK_CLASS_CAST(class, U_PKG_TYPE, UPkgClass)
30 #define IS_U_PKG(obj) \
31         G_TYPE_CHECK_INSTANCE_TYPE(obj, U_PKG_TYPE)
32 #define IS_U_PKG_CLASS(class) \
33         G_TYPE_CHECK_CLASS_TYPE(class, U_PKG_TYPE, UPkgClass)
34 #define U_PKG_GET_CLASS(obj) \
35         G_TYPE_INSTANCE_GET_CLASS(obj, U_PKG_TYPE, UPkgClass)
36
37 typedef struct UPkg      UPkg;
38 typedef struct UPkgClass UPkgClass;
39
40 struct UPkg {
41         GTypeModule parent;
42         struct upkg *pkg;
43 };
44
45 struct UPkgClass {
46         GTypeModuleClass parent;
47 };
48
49 GType u_pkg_get_type(void);
50 GTypeModule *u_pkg_open(const char *name);
51
52 bool u_pkg_is_native(GTypeModule *pkg);
53
54 #endif