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

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

Issue 8806004: Update zlib to 1.2.5. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years 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 | Annotate | Revision Log
« no previous file with comments | « third_party/zlib/contrib/minizip/ioapi.c ('k') | third_party/zlib/contrib/minizip/iowin32.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 /* iowin32.h -- IO base function header for compress/uncompress .zip 1 /* iowin32.h -- IO base function header for compress/uncompress .zip
2 files using zlib + zip or unzip API 2 Version 1.1, February 14h, 2010
3 This IO API version uses the Win32 API (for Microsoft Windows) 3 part of the MiniZip project - ( http://www.winimage.com/zLibDll/minizip.htm l )
4 4
5 Version 1.01e, February 12th, 2005 5 Copyright (C) 1998-2010 Gilles Vollant (minizip) ( http://www.winimage. com/zLibDll/minizip.html )
6 6
7 Copyright (C) 1998-2005 Gilles Vollant 7 Modifications for Zip64 support
8 Copyright (C) 2009-2010 Mathias Svensson ( http://result42.com )
9
10 For more info read MiniZip_info.txt
11
8 */ 12 */
9 13
10 #include <windows.h> 14 #include <windows.h>
11 15
12 16
13 #ifdef __cplusplus 17 #ifdef __cplusplus
14 extern "C" { 18 extern "C" {
15 #endif 19 #endif
16 20
17 void fill_win32_filefunc OF((zlib_filefunc_def* pzlib_filefunc_def)); 21 void fill_win32_filefunc OF((zlib_filefunc_def* pzlib_filefunc_def));
22 void fill_win32_filefunc64 OF((zlib_filefunc64_def* pzlib_filefunc_def));
23 void fill_win32_filefunc64A OF((zlib_filefunc64_def* pzlib_filefunc_def));
24 void fill_win32_filefunc64W OF((zlib_filefunc64_def* pzlib_filefunc_def));
18 25
19 #ifdef __cplusplus 26 #ifdef __cplusplus
20 } 27 }
21 #endif 28 #endif
OLDNEW
« no previous file with comments | « third_party/zlib/contrib/minizip/ioapi.c ('k') | third_party/zlib/contrib/minizip/iowin32.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698