2003-03-18 22:53:15 +03:00
|
|
|
/* $NetBSD: infcodes.h,v 1.8 2003/03/18 19:53:15 mycroft Exp $ */
|
1996-09-13 04:29:49 +04:00
|
|
|
|
1996-09-12 19:33:09 +04:00
|
|
|
/* infcodes.h -- header to use infcodes.c
|
2002-03-12 02:40:14 +03:00
|
|
|
* Copyright (C) 1995-2002 Mark Adler
|
1999-07-03 16:30:16 +04:00
|
|
|
* For conditions of distribution and use, see copyright notice in zlib.h
|
1996-09-12 19:33:09 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* 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;
|
|
|
|
|
2001-01-08 17:48:19 +03:00
|
|
|
extern inflate_codes_statef *inflate_codes_new __P((
|
1996-09-12 19:33:09 +04:00
|
|
|
uInt, uInt,
|
2003-03-18 22:53:15 +03:00
|
|
|
const inflate_huft *, const inflate_huft *,
|
1996-09-12 19:33:09 +04:00
|
|
|
z_streamp ));
|
|
|
|
|
2001-01-08 17:48:19 +03:00
|
|
|
extern int inflate_codes __P((
|
1996-09-12 19:33:09 +04:00
|
|
|
inflate_blocks_statef *,
|
|
|
|
z_streamp ,
|
|
|
|
int));
|
|
|
|
|
2001-01-08 17:48:19 +03:00
|
|
|
extern void inflate_codes_free __P((
|
1996-09-12 19:33:09 +04:00
|
|
|
inflate_codes_statef *,
|
|
|
|
z_streamp ));
|
|
|
|
|