Searched defs:deflate_state (Results 1 – 1 of 1) sorted by relevance
71 typedef struct deflate_state { struct72 z_streamp strm; /* pointer back to this zlib stream */73 int status; /* as the name implies */74 Byte *pending_buf; /* output still pending */75 ulg pending_buf_size; /* size of pending_buf */76 Byte *pending_out; /* next pending byte to output to the stream */77 int pending; /* nb of bytes in the pending buffer */78 int noheader; /* suppress zlib header and adler32 */79 Byte data_type; /* UNKNOWN, BINARY or ASCII */80 Byte method; /* STORED (for zip only) or DEFLATED */[all …]