diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2013-08-07 19:04:48 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2013-08-07 19:04:48 +0000 |
commit | 301e0423a339cb66e18c5e8315fd87be075f5598 (patch) | |
tree | 7e5c1bd91a5b10d9ff08f6971a2e3ae7f3dd47b4 /plugins/BasicHistory/src/zip/mztools.h | |
parent | c290b13c375827ef2fa14a268531b4957c6859ac (diff) |
minizip from zlib used in BasicHistory
git-svn-id: http://svn.miranda-ng.org/main/trunk@5615 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/BasicHistory/src/zip/mztools.h')
-rw-r--r-- | plugins/BasicHistory/src/zip/mztools.h | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/plugins/BasicHistory/src/zip/mztools.h b/plugins/BasicHistory/src/zip/mztools.h deleted file mode 100644 index a49a426ec2..0000000000 --- a/plugins/BasicHistory/src/zip/mztools.h +++ /dev/null @@ -1,37 +0,0 @@ -/* - 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 |