diff options
author | aunsane <aunsane@gmail.com> | 2017-05-13 18:49:10 +0300 |
---|---|---|
committer | aunsane <aunsane@gmail.com> | 2017-05-13 18:49:10 +0300 |
commit | 16bf185e5e3b9710caa334148ae14e14a6884494 (patch) | |
tree | 93d658b5e227d56fd1b66c1c7089f2dd94ad4fe0 /libs/zlib/src/mztools.h | |
parent | cd6513f3037456f6c7c3a8d051be51d62cb9bd88 (diff) |
zlib: returned files removed by mistake
Diffstat (limited to 'libs/zlib/src/mztools.h')
-rw-r--r-- | libs/zlib/src/mztools.h | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/libs/zlib/src/mztools.h b/libs/zlib/src/mztools.h new file mode 100644 index 0000000000..a49a426ec2 --- /dev/null +++ b/libs/zlib/src/mztools.h @@ -0,0 +1,37 @@ +/* + Additional tools for Minizip + Code: Xavier Roche '2004 + License: Same as ZLIB (www.gzip.org) +*/ + +#ifndef _zip_tools_H +#define _zip_tools_H + +#ifdef __cplusplus +extern "C" { +#endif + +#ifndef _ZLIB_H +#include "zlib.h" +#endif + +#include "unzip.h" + +/* Repair a ZIP file (missing central directory) + file: file to recover + fileOut: output file after recovery + fileOutTmp: temporary file name used for recovery +*/ +extern int ZEXPORT unzRepair(const char* file, + const char* fileOut, + const char* fileOutTmp, + uLong* nRecovered, + uLong* bytesRecovered); + + +#ifdef __cplusplus +} +#endif + + +#endif |