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

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

Issue 2084863002: Update Zlib to version 1.2.8 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/mztools.c ('k') | third_party/zlib/contrib/minizip/unzip.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* unzip.h -- IO for uncompress .zip files using zlib 1 /* unzip.h -- IO for uncompress .zip files using zlib
2 Version 1.1, February 14h, 2010 2 Version 1.1, February 14h, 2010
3 part of the MiniZip project - ( http://www.winimage.com/zLibDll/minizip.html ) 3 part of the MiniZip project - ( http://www.winimage.com/zLibDll/minizip.html )
4 4
5 Copyright (C) 1998-2010 Gilles Vollant (minizip) ( http://www.winimage. com/zLibDll/minizip.html ) 5 Copyright (C) 1998-2010 Gilles Vollant (minizip) ( http://www.winimage. com/zLibDll/minizip.html )
6 6
7 Modifications of Unzip for Zip64 7 Modifications of Unzip for Zip64
8 Copyright (C) 2007-2008 Even Rouault 8 Copyright (C) 2007-2008 Even Rouault
9 9
10 Modifications for Zip64 support on both zip and unzip 10 Modifications for Zip64 support on both zip and unzip
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
190 190
191 extern unzFile ZEXPORT unzOpen2_64 OF((const void *path, 191 extern unzFile ZEXPORT unzOpen2_64 OF((const void *path,
192 zlib_filefunc64_def* pzlib_filefunc_def)); 192 zlib_filefunc64_def* pzlib_filefunc_def));
193 /* 193 /*
194 Open a Zip file, like unz64Open, but provide a set of file low level API 194 Open a Zip file, like unz64Open, but provide a set of file low level API
195 for read/write the zip file (see ioapi.h) 195 for read/write the zip file (see ioapi.h)
196 */ 196 */
197 197
198 extern int ZEXPORT unzClose OF((unzFile file)); 198 extern int ZEXPORT unzClose OF((unzFile file));
199 /* 199 /*
200 Close a ZipFile opened with unzipOpen. 200 Close a ZipFile opened with unzOpen.
201 If there is files inside the .Zip opened with unzOpenCurrentFile (see later), 201 If there is files inside the .Zip opened with unzOpenCurrentFile (see later),
202 these files MUST be closed with unzipCloseCurrentFile before call unzipClose . 202 these files MUST be closed with unzCloseCurrentFile before call unzClose.
203 return UNZ_OK if there is no problem. */ 203 return UNZ_OK if there is no problem. */
204 204
205 extern int ZEXPORT unzGetGlobalInfo OF((unzFile file, 205 extern int ZEXPORT unzGetGlobalInfo OF((unzFile file,
206 unz_global_info *pglobal_info)); 206 unz_global_info *pglobal_info));
207 207
208 extern int ZEXPORT unzGetGlobalInfo64 OF((unzFile file, 208 extern int ZEXPORT unzGetGlobalInfo64 OF((unzFile file,
209 unz_global_info64 *pglobal_info)); 209 unz_global_info64 *pglobal_info));
210 /* 210 /*
211 Write info about the ZipFile in the *pglobal_info structure. 211 Write info about the ZipFile in the *pglobal_info structure.
212 No preparation of the structure is needed 212 No preparation of the structure is needed
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
428 extern int ZEXPORT unzSetOffset64 (unzFile file, ZPOS64_T pos); 428 extern int ZEXPORT unzSetOffset64 (unzFile file, ZPOS64_T pos);
429 extern int ZEXPORT unzSetOffset (unzFile file, uLong pos); 429 extern int ZEXPORT unzSetOffset (unzFile file, uLong pos);
430 430
431 431
432 432
433 #ifdef __cplusplus 433 #ifdef __cplusplus
434 } 434 }
435 #endif 435 #endif
436 436
437 #endif /* _unz64_H */ 437 #endif /* _unz64_H */
OLDNEW
« no previous file with comments | « third_party/zlib/contrib/minizip/mztools.c ('k') | third_party/zlib/contrib/minizip/unzip.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698