zlib/infblock.h

33 lines
1.0 KiB
C
Raw Normal View History

2011-09-10 01:36:31 -04:00
/* infblock.h -- header to use infblock.c
2011-09-10 02:13:27 -04:00
* Copyright (C) 1995 Mark Adler
2011-09-10 01:36:31 -04:00
* For conditions of distribution and use, see copyright notice in zlib.h
*/
/* WARNING: this file should *not* be used by applications. It is
part of the implementation of the compression library and is
subject to change. Applications should only use zlib.h.
*/
struct inflate_blocks_state;
2011-09-10 02:09:18 -04:00
typedef struct inflate_blocks_state FAR inflate_blocks_statef;
2011-09-10 01:36:31 -04:00
2011-09-10 02:09:18 -04:00
extern inflate_blocks_statef * inflate_blocks_new OF((
z_stream *z,
check_func c, /* check function */
uInt w)); /* window size */
2011-09-10 01:36:31 -04:00
2011-09-10 02:09:18 -04:00
extern int inflate_blocks OF((
inflate_blocks_statef *,
2011-09-10 01:36:31 -04:00
z_stream *,
2011-09-10 02:08:07 -04:00
int)); /* initial return code */
2011-09-10 01:36:31 -04:00
2011-09-10 02:09:18 -04:00
extern void inflate_blocks_reset OF((
inflate_blocks_statef *,
2011-09-10 02:06:52 -04:00
z_stream *,
2011-09-10 02:09:18 -04:00
uLongf *)); /* check value on output */
2011-09-10 02:06:52 -04:00
2011-09-10 02:09:18 -04:00
extern int inflate_blocks_free OF((
inflate_blocks_statef *,
2011-09-10 01:36:31 -04:00
z_stream *,
2011-09-10 02:09:18 -04:00
uLongf *)); /* check value on output */