diff options
author | Mark Adler <madler@alumni.caltech.edu> | 2011-09-09 23:06:52 -0700 |
---|---|---|
committer | Mark Adler <madler@alumni.caltech.edu> | 2011-09-09 23:06:52 -0700 |
commit | 64b2e892035cf6ea98800c54dce0d63730d50272 (patch) | |
tree | e3b569f87e413eaef4a13469acfd4224b2a63d3a /infblock.h | |
parent | 4ca984fb447ac57120c394cf2fbba23837ed31c2 (diff) | |
download | zlib-107a6403d2ca0e9944aeca1114b1fe04c582f5f9.tar.gz zlib-107a6403d2ca0e9944aeca1114b1fe04c582f5f9.tar.bz2 zlib-107a6403d2ca0e9944aeca1114b1fe04c582f5f9.zip |
zlib 0.9v0.9
Diffstat (limited to 'infblock.h')
-rw-r--r-- | infblock.h | 13 |
1 files changed, 9 insertions, 4 deletions
@@ -11,16 +11,21 @@ | |||
11 | struct inflate_blocks_state; | 11 | struct inflate_blocks_state; |
12 | 12 | ||
13 | extern struct inflate_blocks_state * inflate_blocks_new __P(( | 13 | extern struct inflate_blocks_state * inflate_blocks_new __P(( |
14 | z_stream *z, | 14 | z_stream *, |
15 | check_func c, /* check function */ | 15 | check_func, /* check function */ |
16 | uInt w)); /* window size */ | 16 | uInt)); /* window size */ |
17 | 17 | ||
18 | extern int inflate_blocks __P(( | 18 | extern int inflate_blocks __P(( |
19 | struct inflate_blocks_state *, | 19 | struct inflate_blocks_state *, |
20 | z_stream *, | 20 | z_stream *, |
21 | int)); /* initial return code */ | 21 | int)); /* initial return code */ |
22 | 22 | ||
23 | extern void inflate_blocks_reset __P(( | ||
24 | struct inflate_blocks_state *, | ||
25 | z_stream *, | ||
26 | uLong *)); /* check value on output */ | ||
27 | |||
23 | extern int inflate_blocks_free __P(( | 28 | extern int inflate_blocks_free __P(( |
24 | struct inflate_blocks_state *, | 29 | struct inflate_blocks_state *, |
25 | z_stream *, | 30 | z_stream *, |
26 | uLong *)); /* check value on output */ | 31 | uLong *)); /* check value on output */ |