diff options
Diffstat (limited to 'contrib/minizip/mztools.h')
-rw-r--r-- | contrib/minizip/mztools.h | 62 |
1 files changed, 31 insertions, 31 deletions
diff --git a/contrib/minizip/mztools.h b/contrib/minizip/mztools.h index 82d1597..eee78dc 100644 --- a/contrib/minizip/mztools.h +++ b/contrib/minizip/mztools.h | |||
@@ -1,31 +1,31 @@ | |||
1 | /* | 1 | /* |
2 | Additional tools for Minizip | 2 | Additional tools for Minizip |
3 | Code: Xavier Roche '2004 | 3 | Code: Xavier Roche '2004 |
4 | License: Same as ZLIB (www.gzip.org) | 4 | License: Same as ZLIB (www.gzip.org) |
5 | */ | 5 | */ |
6 | 6 | ||
7 | #ifndef _zip_tools_H | 7 | #ifndef _zip_tools_H |
8 | #define _zip_tools_H | 8 | #define _zip_tools_H |
9 | 9 | ||
10 | #ifdef __cplusplus | 10 | #ifdef __cplusplus |
11 | extern "C" { | 11 | extern "C" { |
12 | #endif | 12 | #endif |
13 | 13 | ||
14 | #ifndef _ZLIB_H | 14 | #ifndef _ZLIB_H |
15 | #include "zlib.h" | 15 | #include "zlib.h" |
16 | #endif | 16 | #endif |
17 | 17 | ||
18 | #include "unzip.h" | 18 | #include "unzip.h" |
19 | 19 | ||
20 | /* Repair a ZIP file (missing central directory) | 20 | /* Repair a ZIP file (missing central directory) |
21 | file: file to recover | 21 | file: file to recover |
22 | fileOut: output file after recovery | 22 | fileOut: output file after recovery |
23 | fileOutTmp: temporary file name used for recovery | 23 | fileOutTmp: temporary file name used for recovery |
24 | */ | 24 | */ |
25 | extern int ZEXPORT unzRepair(const char* file, | 25 | extern int ZEXPORT unzRepair(const char* file, |
26 | const char* fileOut, | 26 | const char* fileOut, |
27 | const char* fileOutTmp, | 27 | const char* fileOutTmp, |
28 | uLong* nRecovered, | 28 | uLong* nRecovered, |
29 | uLong* bytesRecovered); | 29 | uLong* bytesRecovered); |
30 | 30 | ||
31 | #endif | 31 | #endif |