packvfs

view test/zipcat/src/minizip/mztools.h @ 3:ef6c1472607f

jesus fucking christ that was easy... written a test prog "zipcat" to try out zlib's contrib library "minizip", to list and read files out of zip archives directly...
author John Tsiombikas <nuclear@member.fsf.org>
date Mon, 04 Nov 2013 06:46:17 +0200
parents
children
line source
1 /*
2 Additional tools for Minizip
3 Code: Xavier Roche '2004
4 License: Same as ZLIB (www.gzip.org)
5 */
7 #ifndef _zip_tools_H
8 #define _zip_tools_H
10 #ifdef __cplusplus
11 extern "C" {
12 #endif
14 #ifndef _ZLIB_H
15 #include "zlib.h"
16 #endif
18 #include "unzip.h"
20 /* Repair a ZIP file (missing central directory)
21 file: file to recover
22 fileOut: output file after recovery
23 fileOutTmp: temporary file name used for recovery
24 */
25 extern int ZEXPORT unzRepair(const char* file,
26 const char* fileOut,
27 const char* fileOutTmp,
28 uLong* nRecovered,
29 uLong* bytesRecovered);
32 #ifdef __cplusplus
33 }
34 #endif
37 #endif