diff options
author | Mark Adler <madler@alumni.caltech.edu> | 2011-09-09 23:26:49 -0700 |
---|---|---|
committer | Mark Adler <madler@alumni.caltech.edu> | 2011-09-09 23:26:49 -0700 |
commit | d004b047838a7e803818b4973a2e39e0ff8c1fa2 (patch) | |
tree | 9e8c804f78d73152c70d4ff24c6a7531a0d46782 /contrib/minizip/iowin32.h | |
parent | f6194ef39af5864f792412460c354cc339dde7d1 (diff) | |
download | zlib-1.2.3.5.tar.gz zlib-1.2.3.5.tar.bz2 zlib-1.2.3.5.zip |
zlib 1.2.3.5v1.2.3.5
Diffstat (limited to 'contrib/minizip/iowin32.h')
-rw-r--r-- | contrib/minizip/iowin32.h | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/contrib/minizip/iowin32.h b/contrib/minizip/iowin32.h index a3a437a..cc77ec4 100644 --- a/contrib/minizip/iowin32.h +++ b/contrib/minizip/iowin32.h | |||
@@ -1,10 +1,14 @@ | |||
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, January 7th, 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.html ) |
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 | |||
7 | Modifications for Zip64 support | ||
8 | Copyright (C) 2009-2010 Mathias Svensson ( http://result42.com ) | ||
9 | |||
10 | For more info read MiniZip_info.txt | ||
6 | 11 | ||
7 | Copyright (C) 1998-2005 Gilles Vollant | ||
8 | */ | 12 | */ |
9 | 13 | ||
10 | #include <windows.h> | 14 | #include <windows.h> |
@@ -15,6 +19,9 @@ 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 | } |