aboutsummaryrefslogtreecommitdiff
path: root/deflate.h
diff options
context:
space:
mode:
authorMark Adler <madler@alumni.caltech.edu>2011-09-09 23:17:33 -0700
committerMark Adler <madler@alumni.caltech.edu>2011-09-09 23:17:33 -0700
commit7850e4e406dce1f7a819297eeb151d1ca18e7cd9 (patch)
treed4befddacae46b06c4924193904de533099610b4 /deflate.h
parentebd3c2c0e734fc99a1360014ea52ed04fe6aade4 (diff)
downloadzlib-7850e4e406dce1f7a819297eeb151d1ca18e7cd9.tar.gz
zlib-7850e4e406dce1f7a819297eeb151d1ca18e7cd9.tar.bz2
zlib-7850e4e406dce1f7a819297eeb151d1ca18e7cd9.zip
zlib 1.0.7v1.0.7
Diffstat (limited to 'deflate.h')
-rw-r--r--deflate.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/deflate.h b/deflate.h
index a7daf7f..07272d1 100644
--- a/deflate.h
+++ b/deflate.h
@@ -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 */