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