]> git.draconx.ca Git - upkg.git/blob - src/module.h
libupkg: Add signed integer unpacking to fix incorrect signedness issue.
[upkg.git] / src / module.h
1 /*
2  *  upkg: tool for manipulating Unreal Tournament packages.
3  *  Copyright (C) 2009 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 2 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, write to the Free Software
17  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18  */
19
20 #ifndef MODULE_H_
21 #define MODULE_H_
22
23 #include <glib-object.h>
24 #include <ltdl.h>
25
26 #define UPKG_MODULE_TYPE (upkg_module_get_type())
27 #define UPKG_MODULE(obj) \
28         G_TYPE_CHECK_INSTANCE_CAST(obj, UPKG_MODULE_TYPE, UPkgModule)
29 #define UPKG_MODULE_CLASS(class) \
30         G_TYPE_CHECK_CLASS_CAST(class, UPKG_MODULE_TYPE, UPkgModuleClass)
31 #define IS_UPKG_MODULE(obj) \
32         G_TYPE_CHECK_INSTANCE_TYPE(obj, UPKG_MODULE_TYPE)
33 #define IS_UPKG_MODULE_CLASS(class) \
34         G_TYPE_CHECK_CLASS_TYPE(class, UPKG_MODULE_TYPE, UPkgModuleClass)
35
36 typedef struct UPkgModule      UPkgModule;
37 typedef struct UPkgModuleClass UPkgModuleClass;
38
39 struct UPkgModule {
40         GTypeModule parent;
41
42         lt_dlhandle dl;
43 };
44
45 struct UPkgModuleClass {
46         GTypeModuleClass parent;
47 };
48
49 UPkgModule *upkg_module_new(const char *name);
50
51 int module_init(void);
52 int module_exit(void);
53
54 GType module_get_class(const char *package, const char *class);
55
56 #endif