1*44bedb31SLionel Sambuc /* $NetBSD: iowin32.h,v 1.1.1.1 2006/01/14 20:10:57 christos Exp $ */ 2*44bedb31SLionel Sambuc 3*44bedb31SLionel Sambuc /* iowin32.h -- IO base function header for compress/uncompress .zip 4*44bedb31SLionel Sambuc files using zlib + zip or unzip API 5*44bedb31SLionel Sambuc This IO API version uses the Win32 API (for Microsoft Windows) 6*44bedb31SLionel Sambuc 7*44bedb31SLionel Sambuc Version 1.01e, February 12th, 2005 8*44bedb31SLionel Sambuc 9*44bedb31SLionel Sambuc Copyright (C) 1998-2005 Gilles Vollant 10*44bedb31SLionel Sambuc */ 11*44bedb31SLionel Sambuc 12*44bedb31SLionel Sambuc #include <windows.h> 13*44bedb31SLionel Sambuc 14*44bedb31SLionel Sambuc 15*44bedb31SLionel Sambuc #ifdef __cplusplus 16*44bedb31SLionel Sambuc extern "C" { 17*44bedb31SLionel Sambuc #endif 18*44bedb31SLionel Sambuc 19*44bedb31SLionel Sambuc void fill_win32_filefunc OF((zlib_filefunc_def* pzlib_filefunc_def)); 20*44bedb31SLionel Sambuc 21*44bedb31SLionel Sambuc #ifdef __cplusplus 22*44bedb31SLionel Sambuc } 23*44bedb31SLionel Sambuc #endif 24