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