/*1Additional tools for Minizip2Code: Xavier Roche '20043License: Same as ZLIB (www.gzip.org)4*/56#ifndef _zip_tools_H7#define _zip_tools_H89#ifdef __cplusplus10extern "C" {11#endif1213#ifndef _ZLIB_H14#include "zlib.h"15#endif1617#include "unzip.h"1819/* Repair a ZIP file (missing central directory)20file: file to recover21fileOut: output file after recovery22fileOutTmp: temporary file name used for recovery23*/24extern int ZEXPORT unzRepair(const char* file,25const char* fileOut,26const char* fileOutTmp,27uLong* nRecovered,28uLong* bytesRecovered);293031#ifdef __cplusplus32}33#endif343536#endif373839