OLD | NEW |
1 /* unzip.h -- IO for uncompress .zip files using zlib | 1 /* unzip.h -- IO for uncompress .zip files using zlib |
2 Version 1.1, February 14h, 2010 | 2 Version 1.1, February 14h, 2010 |
3 part of the MiniZip project - ( http://www.winimage.com/zLibDll/minizip.html
) | 3 part of the MiniZip project - ( http://www.winimage.com/zLibDll/minizip.html
) |
4 | 4 |
5 Copyright (C) 1998-2010 Gilles Vollant (minizip) ( http://www.winimage.
com/zLibDll/minizip.html ) | 5 Copyright (C) 1998-2010 Gilles Vollant (minizip) ( http://www.winimage.
com/zLibDll/minizip.html ) |
6 | 6 |
7 Modifications of Unzip for Zip64 | 7 Modifications of Unzip for Zip64 |
8 Copyright (C) 2007-2008 Even Rouault | 8 Copyright (C) 2007-2008 Even Rouault |
9 | 9 |
10 Modifications for Zip64 support on both zip and unzip | 10 Modifications for Zip64 support on both zip and unzip |
(...skipping 30 matching lines...) Expand all Loading... |
41 */ | 41 */ |
42 | 42 |
43 #ifndef _unz64_H | 43 #ifndef _unz64_H |
44 #define _unz64_H | 44 #define _unz64_H |
45 | 45 |
46 #ifdef __cplusplus | 46 #ifdef __cplusplus |
47 extern "C" { | 47 extern "C" { |
48 #endif | 48 #endif |
49 | 49 |
50 #ifndef _ZLIB_H | 50 #ifndef _ZLIB_H |
51 #if defined(USE_SYSTEM_ZLIB) | |
52 #include <zlib.h> | |
53 #else | |
54 #include "third_party/zlib/zlib.h" | 51 #include "third_party/zlib/zlib.h" |
55 #endif | 52 #endif |
56 #endif | |
57 | 53 |
58 #ifndef _ZLIBIOAPI_H | 54 #ifndef _ZLIBIOAPI_H |
59 #include "ioapi.h" | 55 #include "ioapi.h" |
60 #endif | 56 #endif |
61 | 57 |
62 #ifdef HAVE_BZIP2 | 58 #ifdef HAVE_BZIP2 |
63 #include "bzlib.h" | 59 #include "bzlib.h" |
64 #endif | 60 #endif |
65 | 61 |
66 #define Z_BZIP2ED 12 | 62 #define Z_BZIP2ED 12 |
(...skipping 365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
432 extern int ZEXPORT unzSetOffset64 (unzFile file, ZPOS64_T pos); | 428 extern int ZEXPORT unzSetOffset64 (unzFile file, ZPOS64_T pos); |
433 extern int ZEXPORT unzSetOffset (unzFile file, uLong pos); | 429 extern int ZEXPORT unzSetOffset (unzFile file, uLong pos); |
434 | 430 |
435 | 431 |
436 | 432 |
437 #ifdef __cplusplus | 433 #ifdef __cplusplus |
438 } | 434 } |
439 #endif | 435 #endif |
440 | 436 |
441 #endif /* _unz64_H */ | 437 #endif /* _unz64_H */ |
OLD | NEW |