diff options
Diffstat (limited to 'deflate.h')
-rw-r--r-- | deflate.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* deflate.h -- internal compression state | 1 | /* deflate.h -- internal compression state |
2 | * Copyright (C) 1995-1996 Jean-loup Gailly | 2 | * Copyright (C) 1995-1998 Jean-loup Gailly |
3 | * For conditions of distribution and use, see copyright notice in zlib.h | 3 | * For conditions of distribution and use, see copyright notice in zlib.h |
4 | */ | 4 | */ |
5 | 5 | ||
@@ -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.10 1996/07/02 12:41:00 me Exp $ */ | 11 | /* @(#) $Id$ */ |
12 | 12 | ||
13 | #ifndef _DEFLATE_H | 13 | #ifndef _DEFLATE_H |
14 | #define _DEFLATE_H | 14 | #define _DEFLATE_H |
@@ -83,6 +83,7 @@ typedef struct internal_state { | |||
83 | z_streamp 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 | ulg pending_buf_size; /* size of pending_buf */ | ||
86 | Bytef *pending_out; /* next pending byte to output to the stream */ | 87 | Bytef *pending_out; /* next pending byte to output to the stream */ |
87 | int pending; /* nb of bytes in the pending buffer */ | 88 | int pending; /* nb of bytes in the pending buffer */ |
88 | int noheader; /* suppress zlib header and adler32 */ | 89 | int noheader; /* suppress zlib header and adler32 */ |