added optional button to restart game (door, panel and touch variants)
[rocksndiamonds.git] / src / libgame / zip / iowin32.h
1 /* iowin32.h -- IO base function header for compress/uncompress .zip
2    Version 1.2.0, September 16th, 2017
3    part of the MiniZip project
4
5    Copyright (C) 2012-2017 Nathan Moinvaziri
6      https://github.com/nmoinvaz/minizip
7    Copyright (C) 2009-2010 Mathias Svensson
8      Modifications for Zip64 support
9      http://result42.com
10    Copyright (C) 1998-2010 Gilles Vollant
11      http://www.winimage.com/zLibDll/minizip.html
12
13    This program is distributed under the terms of the same license as zlib.
14    See the accompanying LICENSE file for the full text of the license.
15 */
16
17 #ifndef _IOWIN32_H
18 #define _IOWIN32_H
19
20 #include <windows.h>
21
22 #ifdef __cplusplus
23 extern "C" {
24 #endif
25
26 void fill_win32_filefunc64A(zlib_filefunc64_def *pzlib_filefunc_def);
27
28 #ifdef __cplusplus
29 }
30 #endif
31
32 #endif