zlib/infcodes.h

28 lines
737 B
C
Raw Normal View History

2011-09-10 09:36:31 +04:00
/* infcodes.h -- header to use infcodes.c
2011-09-10 10:14:39 +04:00
* Copyright (C) 1995-1996 Mark Adler
2011-09-10 09: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_codes_state;
2011-09-10 10:09:18 +04:00
typedef struct inflate_codes_state FAR inflate_codes_statef;
2011-09-10 09:36:31 +04:00
2011-09-10 10:09:18 +04:00
extern inflate_codes_statef *inflate_codes_new OF((
2011-09-10 09:36:31 +04:00
uInt, uInt,
inflate_huft *, inflate_huft *,
z_stream *));
2011-09-10 10:09:18 +04:00
extern int inflate_codes OF((
inflate_blocks_statef *,
2011-09-10 09:36:31 +04:00
z_stream *,
int));
2011-09-10 10:09:18 +04:00
extern void inflate_codes_free OF((
inflate_codes_statef *,
2011-09-10 09:36:31 +04:00
z_stream *));
2011-09-10 10:09:18 +04:00