blob: 0ca0969a7d09a487b1b2b5d74b805837a3bf2e96 [file] [log] [blame]
erikkay@google.com19ba4a52008-12-30 00:40:04 +00001/* iowin32.h -- IO base function header for compress/uncompress .zip
hbono@chromium.orgd2dc2092011-12-12 08:48:38 +00002 Version 1.1, February 14h, 2010
3 part of the MiniZip project - ( http://www.winimage.com/zLibDll/minizip.html )
erikkay@google.com19ba4a52008-12-30 00:40:04 +00004
hbono@chromium.orgd2dc2092011-12-12 08:48:38 +00005 Copyright (C) 1998-2010 Gilles Vollant (minizip) ( http://www.winimage.com/zLibDll/minizip.html )
erikkay@google.com19ba4a52008-12-30 00:40:04 +00006
hbono@chromium.orgd2dc2092011-12-12 08:48:38 +00007 Modifications for Zip64 support
8 Copyright (C) 2009-2010 Mathias Svensson ( http://result42.com )
9
10 For more info read MiniZip_info.txt
11
erikkay@google.com19ba4a52008-12-30 00:40:04 +000012*/
13
14#include <windows.h>
15
16
17#ifdef __cplusplus
18extern "C" {
19#endif
20
21void fill_win32_filefunc OF((zlib_filefunc_def* pzlib_filefunc_def));
hbono@chromium.orgd2dc2092011-12-12 08:48:38 +000022void fill_win32_filefunc64 OF((zlib_filefunc64_def* pzlib_filefunc_def));
23void fill_win32_filefunc64A OF((zlib_filefunc64_def* pzlib_filefunc_def));
24void fill_win32_filefunc64W OF((zlib_filefunc64_def* pzlib_filefunc_def));
erikkay@google.com19ba4a52008-12-30 00:40:04 +000025
26#ifdef __cplusplus
27}
28#endif