/* ioapi_buf.h -- IO base function header for compress/uncompress .zip files using zlib + zip or unzip API This version of ioapi is designed to buffer IO. Copyright (C) 1998-2003 Gilles Vollant (C) 2012-2014 Nathan Moinvaziri This program is distributed under the terms of the same license as zlib. See the accompanying LICENSE file for the full text of the license. */ #ifndef _IOAPI_BUF_H #define _IOAPI_BUF_H #include #include #include #include "zlib.h" #include "ioapi.h" #define IOBUF_BUFFERSIZE (64 * 1024) #ifdef __cplusplus extern "C" { #endif voidpf ZCALLBACK fopen_buf_func OF((voidpf opaque,const char* filename,int mode)); voidpf ZCALLBACK fopen64_buf_func OF((voidpf opaque,const char* filename,int mode)); voidpf ZCALLBACK fopendisk_buf_func OF((voidpf opaque, voidpf stream_cd, int number_disk, int mode)); voidpf ZCALLBACK fopendisk64_buf_func OF((voidpf opaque, voidpf stream_cd, int number_disk, int mode)); uLong ZCALLBACK fread_buf_func OF((voidpf opaque,voidpf stream,void* buf,uLong size)); uLong ZCALLBACK fwrite_buf_func OF((voidpf opaque,voidpf stream,const void* buf,uLong size)); long ZCALLBACK ftell_buf_func OF((voidpf opaque,voidpf stream)); ZPOS64_T ZCALLBACK ftell64_buf_func OF((voidpf opaque, voidpf stream)); long ZCALLBACK fseek_buf_func OF((voidpf opaque,voidpf stream,uLong offset,int origin)); long ZCALLBACK fseek64_buf_func OF((voidpf opaque, voidpf stream, ZPOS64_T offset, int origin)); int ZCALLBACK fclose_buf_func OF((voidpf opaque,voidpf stream)); int ZCALLBACK ferror_buf_func OF((voidpf opaque,voidpf stream)); typedef struct ourbuffer_s { zlib_filefunc_def filefunc; zlib_filefunc64_def filefunc64; } ourbuffer_t; void fill_buffer_filefunc OF((zlib_filefunc_def* pzlib_filefunc_def, ourbuffer_t *ourbuf)); void fill_buffer_filefunc64 OF((zlib_filefunc64_def* pzlib_filefunc_def, ourbuffer_t *ourbuf)); #ifdef __cplusplus } #endif #endif