2002-05-29 22:15:17 +04:00
|
|
|
/* $NetBSD: infblock.h,v 1.8 2002/05/29 18:15:18 christos Exp $ */
|
1996-09-13 04:29:49 +04:00
|
|
|
|
1996-09-12 19:33:09 +04:00
|
|
|
/* infblock.h -- header to use infblock.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_blocks_state;
|
|
|
|
typedef struct inflate_blocks_state FAR inflate_blocks_statef;
|
|
|
|
|
2001-01-08 17:48:19 +03:00
|
|
|
extern inflate_blocks_statef * inflate_blocks_new __P((
|
1996-09-12 19:33:09 +04:00
|
|
|
z_streamp z,
|
|
|
|
check_func c, /* check function */
|
|
|
|
uInt w)); /* window size */
|
|
|
|
|
2001-01-08 17:48:19 +03:00
|
|
|
extern int inflate_blocks __P((
|
1996-09-12 19:33:09 +04:00
|
|
|
inflate_blocks_statef *,
|
|
|
|
z_streamp ,
|
|
|
|
int)); /* initial return code */
|
|
|
|
|
2001-01-08 17:48:19 +03:00
|
|
|
extern void inflate_blocks_reset __P((
|
1996-09-12 19:33:09 +04:00
|
|
|
inflate_blocks_statef *,
|
|
|
|
z_streamp ,
|
|
|
|
uLongf *)); /* check value on output */
|
|
|
|
|
2001-01-08 17:48:19 +03:00
|
|
|
extern int inflate_blocks_free __P((
|
1996-09-12 19:33:09 +04:00
|
|
|
inflate_blocks_statef *,
|
1998-11-01 23:33:24 +03:00
|
|
|
z_streamp));
|
1996-09-12 19:33:09 +04:00
|
|
|
|
2001-01-08 17:48:19 +03:00
|
|
|
extern void inflate_set_dictionary __P((
|
1996-09-12 19:33:09 +04:00
|
|
|
inflate_blocks_statef *s,
|
|
|
|
const Bytef *d, /* dictionary */
|
|
|
|
uInt n)); /* dictionary length */
|
1998-11-01 23:33:24 +03:00
|
|
|
|
2001-01-08 17:48:19 +03:00
|
|
|
extern int inflate_blocks_sync_point __P((
|
1998-11-01 23:33:24 +03:00
|
|
|
inflate_blocks_statef *s));
|
2002-05-29 22:15:17 +04:00
|
|
|
|
|
|
|
extern int inflate_addhistory __P((
|
|
|
|
inflate_blocks_statef *,
|
|
|
|
z_streamp));
|
|
|
|
|
|
|
|
extern int inflate_packet_flush __P((
|
|
|
|
inflate_blocks_statef *s));
|