]> git.draconx.ca Git - upkg.git/blob - src/upkg.h
Add copyright and licensing info.
[upkg.git] / src / upkg.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 UPKG_H_
21 #define UPKG_H_
22
23 #define UPKG_FLAG_ALLOW_DOWNLOAD  0x0001
24 #define UPKG_FLAG_CLIENT_OPTIONAL 0x0002
25 #define UPKG_FLAG_SERVER_ONLY     0x0004
26 #define UPKG_FLAG_BROKEN_LINKS    0x0008
27 #define UPKG_FLAG_INSECURE        0x0010
28 #define UPKG_FLAG_REQUIRED        0x8000
29
30 #define UPKG_OBJ_FLAG_TRANSACTIONAL   0x00000001
31 #define UPKG_OBJ_FLAG_UNREACHABLE     0x00000002
32 #define UPKG_OBJ_FLAG_PUBLIC          0x00000004
33 #define UPKG_OBJ_FLAG_TAG_IMPORT      0x00000008
34 #define UPKG_OBJ_FLAG_TAG_EXPORT      0x00000010
35 #define UPKG_OBJ_FLAG_SOURCE_MODIFIED 0x00000020
36 #define UPKG_OBJ_FLAG_TAG_GARBAGE     0x00000040
37 #define UPKG_OBJ_FLAG_NEED_LOAD       0x00000200
38 #define UPKG_OBJ_FLAG_HIGHLIGHT_NAME  0x00000400
39
40 #define UPKG_HDR_MAGIC 0x9e2a83c1
41 #define UPKG_HDR_SIZE  36
42
43 struct upkg {
44         unsigned version, license;
45         unsigned long flags;
46
47         unsigned long name_count, export_count, import_count;
48
49         struct upkg_private *priv;
50 };
51
52 struct upkg *upkg_fopen(const char *path);
53 int upkg_close(struct upkg *pkg);
54 const char *upkg_get_name(struct upkg *pkg, unsigned long idx);
55
56 #endif