1 /*
2 
3   common.h
4   Zipper
5 
6   Copyright (C) 2012 Free Software Foundation, Inc
7 
8   Authors: Sebastian Reitenbach <sebastia@l00-bugdead.prods.de>
9 
10   This application is free software; you can redistribute it and/or modify it
11   under the terms of the GNU General Public License as published by the Free
12   Software Foundation; either version 2 of the License, or (at your option)
13   any later version.
14 
15   This program is distributed in the hope that it will be useful, but
16   WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
17   or FITNESS FOR A PARTICULAR PURPOSE.
18   See the GNU General Public License for more details
19 
20  */
21 
22 typedef enum
23 {
24 	UNKNOWN = 0,
25 	SEVENZIP,
26 	ACE,
27 	ARC,
28 	ARJ,
29 	BZIP2,
30 	CAB,
31 	GZIP,
32 	LHA,
33 	LZO,
34 	LZX,
35 	RAR,
36 	TAR,
37 	TARBZ2,
38 	TARGZ,
39 	TARXZ,
40 	TGZ,
41 	XZ,
42 	ZIP,
43 	ZOO
44 } ArchiveType;
45 
46 #if !defined (GNUSTEP) &&  (MAC_OS_X_VERSION_MAX_ALLOWED <= MAC_OS_X_VERSION_10_4)
47 #define NSUInteger unsigned
48 #define NSInteger int
49 #endif
50 
51