From 23c69f10698301ae97709eb0bbfb371d66b99a08 Mon Sep 17 00:00:00 2001 From: Mark Adler Date: Fri, 9 Sep 2011 23:09:18 -0700 Subject: zlib 0.94 --- infblock.h | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) (limited to 'infblock.h') diff --git a/infblock.h b/infblock.h index c0712c1..aba6e24 100644 --- a/infblock.h +++ b/infblock.h @@ -9,23 +9,24 @@ */ struct inflate_blocks_state; +typedef struct inflate_blocks_state FAR inflate_blocks_statef; -extern struct inflate_blocks_state * inflate_blocks_new __P(( - z_stream *, - check_func, /* check function */ - uInt)); /* window size */ +extern inflate_blocks_statef * inflate_blocks_new OF(( + z_stream *z, + check_func c, /* check function */ + uInt w)); /* window size */ -extern int inflate_blocks __P(( - struct inflate_blocks_state *, +extern int inflate_blocks OF(( + inflate_blocks_statef *, z_stream *, int)); /* initial return code */ -extern void inflate_blocks_reset __P(( - struct inflate_blocks_state *, +extern void inflate_blocks_reset OF(( + inflate_blocks_statef *, z_stream *, - uLong *)); /* check value on output */ + uLongf *)); /* check value on output */ -extern int inflate_blocks_free __P(( - struct inflate_blocks_state *, +extern int inflate_blocks_free OF(( + inflate_blocks_statef *, z_stream *, - uLong *)); /* check value on output */ + uLongf *)); /* check value on output */ -- cgit v1.2.3-55-g6feb