diff options
author | Mark Adler <madler@alumni.caltech.edu> | 2011-09-09 23:17:02 -0700 |
---|---|---|
committer | Mark Adler <madler@alumni.caltech.edu> | 2011-09-09 23:17:02 -0700 |
commit | ff11b0a61f7345572ff2e413173d3179486162f2 (patch) | |
tree | f3c9e2563c4f0ac6684a0012ad48423d4c6aa798 /deflate.h | |
parent | e26a448e9673d67dc2866e11a48d24fc352e5f80 (diff) | |
download | zlib-ff11b0a61f7345572ff2e413173d3179486162f2.tar.gz zlib-ff11b0a61f7345572ff2e413173d3179486162f2.tar.bz2 zlib-ff11b0a61f7345572ff2e413173d3179486162f2.zip |
zlib 1.0.4v1.0.4
Diffstat (limited to 'deflate.h')
-rw-r--r-- | deflate.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -8,7 +8,7 @@ | |||
8 | subject to change. Applications should only use zlib.h. | 8 | subject to change. Applications should only use zlib.h. |
9 | */ | 9 | */ |
10 | 10 | ||
11 | /* $Id: deflate.h,v 1.9 1996/01/30 21:59:13 me Exp $ */ | 11 | /* $Id: deflate.h,v 1.10 1996/07/02 12:41:00 me Exp $ */ |
12 | 12 | ||
13 | #ifndef _DEFLATE_H | 13 | #ifndef _DEFLATE_H |
14 | #define _DEFLATE_H | 14 | #define _DEFLATE_H |
@@ -80,7 +80,7 @@ typedef unsigned IPos; | |||
80 | */ | 80 | */ |
81 | 81 | ||
82 | typedef struct internal_state { | 82 | typedef struct internal_state { |
83 | z_stream *strm; /* pointer back to this zlib stream */ | 83 | z_streamp strm; /* pointer back to this zlib stream */ |
84 | int status; /* as the name implies */ | 84 | int status; /* as the name implies */ |
85 | Bytef *pending_buf; /* output still pending */ | 85 | Bytef *pending_buf; /* output still pending */ |
86 | Bytef *pending_out; /* next pending byte to output to the stream */ | 86 | Bytef *pending_out; /* next pending byte to output to the stream */ |