Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(62)

Side by Side Diff: third_party/zlib/contrib/minizip/mztools.h

Issue 2023703002: Beginning work on GN build (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Really add //build. Add dart_bootstrap rule. Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « third_party/zlib/contrib/minizip/minizip.c ('k') | third_party/zlib/contrib/minizip/mztools.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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 "third_party/zlib/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
OLDNEW
« no previous file with comments | « third_party/zlib/contrib/minizip/minizip.c ('k') | third_party/zlib/contrib/minizip/mztools.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698