failed. Modified Files: README adler32.c compress.c crc32.c deflate.c deflate.h example.c gzio.c infblock.c infblock.h infcodes.c infcodes.h inffast.c inffast.h inflate.c inftrees.c inftrees.h infutil.c infutil.h minigzip.c trees.c uncompr.c zconf.h zlib.h zutil.c zutil.h git-svn-id: svn://10.0.0.236/trunk@137599 18797224-902f-48f8-a5cc-f745e15eee43
28 lines
737 B
C
28 lines
737 B
C
/* infcodes.h -- header to use infcodes.c
|
|
* Copyright (C) 1995-1996 Mark Adler
|
|
* 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;
|
|
typedef struct inflate_codes_state FAR inflate_codes_statef;
|
|
|
|
extern inflate_codes_statef *inflate_codes_new OF((
|
|
uInt, uInt,
|
|
inflate_huft *, inflate_huft *,
|
|
z_streamp ));
|
|
|
|
extern int inflate_codes OF((
|
|
inflate_blocks_statef *,
|
|
z_streamp ,
|
|
int));
|
|
|
|
extern void inflate_codes_free OF((
|
|
inflate_codes_statef *,
|
|
z_streamp ));
|
|
|