OLD | NEW |
1 /* zip.h -- IO on .zip files using zlib | 1 /* zip.h -- IO on .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 for Zip64 support | 7 Modifications for Zip64 support |
8 Copyright (C) 2009-2010 Mathias Svensson ( http://result42.com ) | 8 Copyright (C) 2009-2010 Mathias Svensson ( http://result42.com ) |
9 | 9 |
10 For more info read MiniZip_info.txt | 10 For more info read MiniZip_info.txt |
(...skipping 29 matching lines...) Expand all Loading... |
40 #ifndef _zip12_H | 40 #ifndef _zip12_H |
41 #define _zip12_H | 41 #define _zip12_H |
42 | 42 |
43 #ifdef __cplusplus | 43 #ifdef __cplusplus |
44 extern "C" { | 44 extern "C" { |
45 #endif | 45 #endif |
46 | 46 |
47 //#define HAVE_BZIP2 | 47 //#define HAVE_BZIP2 |
48 | 48 |
49 #ifndef _ZLIB_H | 49 #ifndef _ZLIB_H |
50 #if defined(USE_SYSTEM_ZLIB) | |
51 #include <zlib.h> | |
52 #else | |
53 #include "third_party/zlib/zlib.h" | 50 #include "third_party/zlib/zlib.h" |
54 #endif | 51 #endif |
55 #endif | |
56 | 52 |
57 #ifndef _ZLIBIOAPI_H | 53 #ifndef _ZLIBIOAPI_H |
58 #include "ioapi.h" | 54 #include "ioapi.h" |
59 #endif | 55 #endif |
60 | 56 |
61 #ifdef HAVE_BZIP2 | 57 #ifdef HAVE_BZIP2 |
62 #include "bzlib.h" | 58 #include "bzlib.h" |
63 #endif | 59 #endif |
64 | 60 |
65 #define Z_BZIP2ED 12 | 61 #define Z_BZIP2ED 12 |
(...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
357 | 353 |
358 Remove ZIP64 Extra information from a Local File Header
extra field data | 354 Remove ZIP64 Extra information from a Local File Header
extra field data |
359 zipRemoveExtraInfoBlock(pLocalHeaderExtraFieldData, &nLocalHeaderExtraFi
eldDataLen, 0x0001); | 355 zipRemoveExtraInfoBlock(pLocalHeaderExtraFieldData, &nLocalHeaderExtraFi
eldDataLen, 0x0001); |
360 */ | 356 */ |
361 | 357 |
362 #ifdef __cplusplus | 358 #ifdef __cplusplus |
363 } | 359 } |
364 #endif | 360 #endif |
365 | 361 |
366 #endif /* _zip64_H */ | 362 #endif /* _zip64_H */ |
OLD | NEW |