diff options
author | Mark Adler <madler@alumni.caltech.edu> | 2011-09-09 23:24:52 -0700 |
---|---|---|
committer | Mark Adler <madler@alumni.caltech.edu> | 2011-09-09 23:24:52 -0700 |
commit | 9c3a5830218c4e7fff23b8fc4386269db77a03a9 (patch) | |
tree | 913542049433ae44de55d22913f6bca921f2dc15 /deflate.h | |
parent | 6b8233bfe00e79134cb1b84fc49d4f750a797f79 (diff) | |
download | zlib-9c3a5830218c4e7fff23b8fc4386269db77a03a9.tar.gz zlib-9c3a5830218c4e7fff23b8fc4386269db77a03a9.tar.bz2 zlib-9c3a5830218c4e7fff23b8fc4386269db77a03a9.zip |
zlib 1.2.2.4v1.2.2.4
Diffstat (limited to 'deflate.h')
-rw-r--r-- | deflate.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -97,10 +97,10 @@ typedef struct internal_state { | |||
97 | Bytef *pending_buf; /* output still pending */ | 97 | Bytef *pending_buf; /* output still pending */ |
98 | ulg pending_buf_size; /* size of pending_buf */ | 98 | ulg pending_buf_size; /* size of pending_buf */ |
99 | Bytef *pending_out; /* next pending byte to output to the stream */ | 99 | Bytef *pending_out; /* next pending byte to output to the stream */ |
100 | int pending; /* nb of bytes in the pending buffer */ | 100 | uInt pending; /* nb of bytes in the pending buffer */ |
101 | int wrap; /* bit 0 true for zlib, bit 1 true for gzip */ | 101 | int wrap; /* bit 0 true for zlib, bit 1 true for gzip */ |
102 | gz_headerp gzhead; /* gzip header information to write */ | 102 | gz_headerp gzhead; /* gzip header information to write */ |
103 | int gzindex; /* where in extra, name, or comment */ | 103 | uInt gzindex; /* where in extra, name, or comment */ |
104 | Byte method; /* STORED (for zip only) or DEFLATED */ | 104 | Byte method; /* STORED (for zip only) or DEFLATED */ |
105 | int last_flush; /* value of flush param for previous deflate call */ | 105 | int last_flush; /* value of flush param for previous deflate call */ |
106 | 106 | ||