Symbian
Symbian Developer Library

SYMBIAN OS V9.4

Feedback

[Index] [Previous] [Next]

#include <EZlib.h>

Struct z_stream_s

struct z_stream_s;

Description

Encapsulates a zip stream

Members

Defined in z_stream_s:


Member data


next_in

Bytef * next_in;

Description


next_out

Bytef * next_out;

Description


next_in

Bytef * next_in;

Description

next input byte


avail_in

uInt avail_in;

Description

number of bytes available at next_in


msg

char * msg;

Description


state

internal_state * state;

Description


total_in

uLong total_in;

Description

total nb of input bytes read so far


next_out

Bytef * next_out;

Description

next output byte should be put there


avail_out

uInt avail_out;

Description

remaining free space at next_out


total_out

uLong total_out;

Description

total nb of bytes output so far


msg

char * msg;

Description

last error message, NULL if no error


state

internal_state * state;

Description


zalloc

alloc_func zalloc;

Description

used to allocate the internal state


zfree

free_func zfree;

Description

used to free the internal state


opaque

voidpf opaque;

Description

private data object passed to zalloc and zfree


data_type

int data_type;

Description

best guess about the data type: ascii or binary


adler

uLong adler;

Description

adler32 value of the uncompressed data


reserved

uLong reserved;

Description

reserved for future use