Go to the source code of this file.
|
#define | ZLIB_FILEFUNC_SEEK_CUR (1) |
|
#define | ZLIB_FILEFUNC_SEEK_END (2) |
|
#define | ZLIB_FILEFUNC_SEEK_SET (0) |
|
#define | ZLIB_FILEFUNC_MODE_READ (1) |
|
#define | ZLIB_FILEFUNC_MODE_WRITE (2) |
|
#define | ZLIB_FILEFUNC_MODE_READWRITEFILTER (3) |
|
#define | ZLIB_FILEFUNC_MODE_EXISTING (4) |
|
#define | ZLIB_FILEFUNC_MODE_CREATE (8) |
|
#define | ZCALLBACK |
|
#define | ZREAD(filefunc, filestream, buf, size) ((*((filefunc).zread_file))((filefunc).opaque,filestream,buf,size)) |
|
#define | ZWRITE(filefunc, filestream, buf, size) ((*((filefunc).zwrite_file))((filefunc).opaque,filestream,buf,size)) |
|
#define | ZTELL(filefunc, filestream) ((*((filefunc).ztell_file))((filefunc).opaque,filestream)) |
|
#define | ZSEEK(filefunc, filestream, pos, mode) ((*((filefunc).zseek_file))((filefunc).opaque,filestream,pos,mode)) |
|
#define | ZCLOSE(filefunc, filestream) ((*((filefunc).zclose_file))((filefunc).opaque,filestream)) |
|
#define | ZERROR(filefunc, filestream) ((*((filefunc).zerror_file))((filefunc).opaque,filestream)) |
|
#define ZCLOSE |
( |
|
filefunc, |
|
|
|
filestream |
|
) |
| ((*((filefunc).zclose_file))((filefunc).opaque,filestream)) |
#define ZERROR |
( |
|
filefunc, |
|
|
|
filestream |
|
) |
| ((*((filefunc).zerror_file))((filefunc).opaque,filestream)) |
#define ZLIB_FILEFUNC_MODE_CREATE (8) |
#define ZLIB_FILEFUNC_MODE_EXISTING (4) |
#define ZLIB_FILEFUNC_MODE_READ (1) |
#define ZLIB_FILEFUNC_MODE_READWRITEFILTER (3) |
#define ZLIB_FILEFUNC_MODE_WRITE (2) |
#define ZLIB_FILEFUNC_SEEK_CUR (1) |
#define ZLIB_FILEFUNC_SEEK_END (2) |
#define ZLIB_FILEFUNC_SEEK_SET (0) |
#define ZREAD |
( |
|
filefunc, |
|
|
|
filestream, |
|
|
|
buf, |
|
|
|
size |
|
) |
| ((*((filefunc).zread_file))((filefunc).opaque,filestream,buf,size)) |
#define ZSEEK |
( |
|
filefunc, |
|
|
|
filestream, |
|
|
|
pos, |
|
|
|
mode |
|
) |
| ((*((filefunc).zseek_file))((filefunc).opaque,filestream,pos,mode)) |
#define ZTELL |
( |
|
filefunc, |
|
|
|
filestream |
|
) |
| ((*((filefunc).ztell_file))((filefunc).opaque,filestream)) |
#define ZWRITE |
( |
|
filefunc, |
|
|
|
filestream, |
|
|
|
buf, |
|
|
|
size |
|
) |
| ((*((filefunc).zwrite_file))((filefunc).opaque,filestream,buf,size)) |