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