diff options
Diffstat (limited to 'inflate.h')
-rw-r--r-- | inflate.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -83,7 +83,7 @@ typedef enum { /* State maintained between inflate() calls -- approximately 7K bytes, not including the allocated sliding window, which is up to 32K bytes. */ struct inflate_state { - z_stream *strm; /* pointer back to this zlib stream */ + PREFIX3(stream) *strm; /* pointer back to this zlib stream */ inflate_mode mode; /* current inflate mode */ int last; /* true if processing last block */ int wrap; /* bit 0 true for zlib, bit 1 true for gzip, @@ -93,7 +93,7 @@ struct inflate_state { unsigned dmax; /* zlib header max distance (INFLATE_STRICT) */ unsigned long check; /* protected copy of check value */ unsigned long total; /* protected copy of output count */ - gz_headerp head; /* where to save gzip header information */ + PREFIX(gz_headerp) head; /* where to save gzip header information */ /* sliding window */ unsigned wbits; /* log base 2 of requested window size */ uint32_t wsize; /* window size or zero if not using window */ |