struct z_stream_s;
Description
Encapsulates a zip stream
Members
Defined in z_stream_s
:
adler
, avail_in
, avail_out
, data_type
, msg
, msg
, next_in
, next_in
, next_out
, next_out
, opaque
, reserved
, state
, state
, total_in
, total_out
, zalloc
, zfree
uInt avail_in;
Description
number of bytes available at next_in
uLong total_in;
Description
total nb of input bytes read so far
Bytef * next_out;
Description
next output byte should be put there
uInt avail_out;
Description
remaining free space at next_out
uLong total_out;
Description
total nb of bytes output so far
char * msg;
Description
last error message, NULL if no error
alloc_func zalloc;
Description
used to allocate the internal state
free_func zfree;
Description
used to free the internal state
voidpf opaque;
Description
private data object passed to zalloc and zfree
int data_type;
Description
best guess about the data type: ascii or binary
uLong adler;
Description
adler32 value of the uncompressed data