#include <zstream.h>
Public Member Functions | |
z_stream () | |
ZStream constructor. | |
~z_stream () | |
ZStream destructor. | |
Public Attributes | |
char * | zlib_version |
Byte * | next_in |
uInt | avail_in |
uLong | total_in |
Byte * | next_out |
uInt | avail_out |
uLong | total_out |
char * | msg |
InflateState * | In_state |
DeflateState * | De_state |
alloc_func | zalloc |
free_func | zfree |
void * | opaque |
Byte | data_type |
uLong | adler |
uLong | reserved |
Private Member Functions | |
CC_DECLARE_MEMDUMP (z_stream) |
Definition at line 124 of file zstream.h.
|
ZStream constructor.
Definition at line 169 of file zstream.cpp. 00170 { 00171 next_in = NULL; 00172 avail_in = 0; 00173 total_in = 0; 00174 00175 next_out = NULL; 00176 avail_out = 0; 00177 total_out = 0; 00178 00179 msg = NULL; 00180 00181 In_state = NULL; 00182 De_state = NULL; 00183 00184 zalloc = (alloc_func)0; 00185 zfree = (free_func)0; 00186 00187 data_type = Z_BINARY; 00188 adler = 0; 00189 reserved = 0; 00190 00191 zlib_version = ZLIB_VERSION; 00192 }
|
|
ZStream destructor.
Definition at line 204 of file zstream.cpp. 00205 { 00206 if (In_state) 00207 { 00208 delete In_state; 00209 In_state = NULL; 00210 } 00211 #ifdef DO_EXPORT 00212 if (De_state) 00213 { 00214 delete De_state; 00215 De_state = NULL; 00216 } 00217 #endif 00218 }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|