00001 /* infblock.h -- header to use infblock.c 00002 * Copyright (C) 1995-2002 Mark Adler 00003 * For conditions of distribution and use, see copyright notice in zlib.h 00004 */ 00005 00006 /* WARNING: this file should *not* be used by applications. It is 00007 part of the implementation of the compression library and is 00008 subject to change. Applications should only use zlib.h. 00009 */ 00010 00011 #ifndef _INFBLOCK_H 00012 #define _INFBLOCK_H 00013 00014 struct inflate_blocks_state; 00015 typedef struct inflate_blocks_state FAR inflate_blocks_statef; 00016 00017 local inflate_blocks_statef * inflate_blocks_new OF(( 00018 z_streamp z, 00019 check_func c, /* check function */ 00020 uInt w)); /* window size */ 00021 00022 local int inflate_blocks OF(( 00023 inflate_blocks_statef *, 00024 z_streamp , 00025 int)); /* initial return code */ 00026 00027 local void inflate_blocks_reset OF(( 00028 inflate_blocks_statef *, 00029 z_streamp , 00030 uLongf *)); /* check value on output */ 00031 00032 local int inflate_blocks_free OF(( 00033 inflate_blocks_statef *, 00034 z_streamp)); 00035 00036 #endif /* _INFBLOCK_H */