summaryrefslogtreecommitdiff
path: root/zlib.h
diff options
context:
space:
mode:
Diffstat (limited to 'zlib.h')
-rw-r--r--zlib.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/zlib.h b/zlib.h
index c97f682..0c94166 100644
--- a/zlib.h
+++ b/zlib.h
@@ -1,5 +1,5 @@
1/* zlib.h -- interface of the 'zlib' general purpose compression library 1/* zlib.h -- interface of the 'zlib' general purpose compression library
2 version 1.2.1.1, January 9th, 2004 2 version 1.2.1.2, September 9th, 2004
3 3
4 Copyright (C) 1995-2004 Jean-loup Gailly and Mark Adler 4 Copyright (C) 1995-2004 Jean-loup Gailly and Mark Adler
5 5
@@ -37,8 +37,8 @@
37extern "C" { 37extern "C" {
38#endif 38#endif
39 39
40#define ZLIB_VERSION "1.2.1.1" 40#define ZLIB_VERSION "1.2.1.2"
41#define ZLIB_VERNUM 0x1211 41#define ZLIB_VERNUM 0x1212
42 42
43/* 43/*
44 The 'zlib' compression library provides in-memory compression and 44 The 'zlib' compression library provides in-memory compression and
@@ -401,7 +401,7 @@ ZEXTERN int ZEXPORT inflate OF((z_streamp strm, int flush));
401 because Z_BLOCK is used. 401 because Z_BLOCK is used.
402 402
403 If a preset dictionary is needed after this call (see inflateSetDictionary 403 If a preset dictionary is needed after this call (see inflateSetDictionary
404 below), inflate sets strm-adler to the adler32 checksum of the dictionary 404 below), inflate sets strm->adler to the adler32 checksum of the dictionary
405 chosen by the compressor and returns Z_NEED_DICT; otherwise it sets 405 chosen by the compressor and returns Z_NEED_DICT; otherwise it sets
406 strm->adler to the adler32 checksum of all output produced so far (that is, 406 strm->adler to the adler32 checksum of all output produced so far (that is,
407 total_out bytes) and returns Z_OK, Z_STREAM_END or an error code as described 407 total_out bytes) and returns Z_OK, Z_STREAM_END or an error code as described
@@ -1189,7 +1189,7 @@ ZEXTERN int ZEXPORT inflateBackInit_ OF((z_stream FAR *strm, int windowBits,
1189 struct internal_state {int dummy;}; /* hack for buggy compilers */ 1189 struct internal_state {int dummy;}; /* hack for buggy compilers */
1190#endif 1190#endif
1191 1191
1192ZEXTERN const char * ZEXPORT zError OF((int err)); 1192ZEXTERN const char * ZEXPORT zError OF((int));
1193ZEXTERN int ZEXPORT inflateSyncPoint OF((z_streamp z)); 1193ZEXTERN int ZEXPORT inflateSyncPoint OF((z_streamp z));
1194ZEXTERN const uLongf * ZEXPORT get_crc_table OF((void)); 1194ZEXTERN const uLongf * ZEXPORT get_crc_table OF((void));
1195 1195