~alinuxninja/nginx-edge/trunk

« back to all changes in this revision

Viewing changes to debian/modules/ngx_pagespeed/psol/include/third_party/zlib/contrib/minizip/mztools.h

  • Committer: Vivian
  • Date: 2015-12-04 18:20:11 UTC
  • Revision ID: git-v1:a36f2bc32e884f7473b3a47040e5411306144d7d
* Do not extract psol.tar.gz

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
  Additional tools for Minizip
3
 
  Code: Xavier Roche '2004
4
 
  License: Same as ZLIB (www.gzip.org)
5
 
*/
6
 
 
7
 
#ifndef _zip_tools_H
8
 
#define _zip_tools_H
9
 
 
10
 
#ifdef __cplusplus
11
 
extern "C" {
12
 
#endif
13
 
 
14
 
#ifndef _ZLIB_H
15
 
#include "zlib.h"
16
 
#endif
17
 
 
18
 
#include "unzip.h"
19
 
 
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);
30
 
 
31
 
#endif