|
1
|
/* iowin32.h -- IO base function header for compress/uncompress .zip |
|
2
|
part of the MiniZip project - ( https://www.winimage.com/zLibDll/minizip.html ) |
|
3
|
|
|
4
|
Copyright (C) 1998-2026 Gilles Vollant (minizip) ( https://www.winimage.com/zLibDll/minizip.html ) |
|
5
|
|
|
6
|
Modifications for Zip64 support |
|
7
|
Copyright (C) 2009-2010 Mathias Svensson ( https://result42.com ) |
|
8
|
|
|
9
|
For more info read MiniZip_info.txt |
|
10
|
|
|
11
|
*/ |
|
12
|
|
|
13
|
#include <windows.h> |
|
14
|
|
|
15
|
|
|
16
|
#ifdef __cplusplus |
|
17
|
extern "C" { |
|
18
|
#endif |
|
19
|
|
|
20
|
void fill_win32_filefunc(zlib_filefunc_def* pzlib_filefunc_def); |
|
21
|
void fill_win32_filefunc64(zlib_filefunc64_def* pzlib_filefunc_def); |
|
22
|
void fill_win32_filefunc64A(zlib_filefunc64_def* pzlib_filefunc_def); |
|
23
|
void fill_win32_filefunc64W(zlib_filefunc64_def* pzlib_filefunc_def); |
|
24
|
|
|
25
|
#ifdef __cplusplus |
|
26
|
} |
|
27
|
#endif |
|
28
|
|