| 1 | /* |
|---|
| 2 | * $Id: //suprahd/releases/suprahd_163/suprahd_ztvapp640_163/drivers/graphics/ZLIB/infblock.h#1 $ |
|---|
| 3 | * $Revision: #1 $ |
|---|
| 4 | * $DateTime: 2006/02/24 17:51:46 $ |
|---|
| 5 | * $Change: 42566 $ |
|---|
| 6 | * $Author: pryush.sharma $ |
|---|
| 7 | */ |
|---|
| 8 | |
|---|
| 9 | /* infblock.h -- header to use infblock.c |
|---|
| 10 | * Copyright (C) 1995-1998 Mark Adler |
|---|
| 11 | * For conditions of distribution and use, see copyright notice in zlib.h |
|---|
| 12 | */ |
|---|
| 13 | |
|---|
| 14 | /* WARNING: this file should *not* be used by applications. It is |
|---|
| 15 | part of the implementation of the compression library and is |
|---|
| 16 | subject to change. Applications should only use zlib.h. |
|---|
| 17 | */ |
|---|
| 18 | |
|---|
| 19 | struct inflate_blocks_state; |
|---|
| 20 | typedef struct inflate_blocks_state FAR inflate_blocks_statef; |
|---|
| 21 | |
|---|
| 22 | extern inflate_blocks_statef * inflate_blocks_new OF(( |
|---|
| 23 | z_streamp z, |
|---|
| 24 | check_func c, /* check function */ |
|---|
| 25 | uInt w)); /* window size */ |
|---|
| 26 | |
|---|
| 27 | extern int inflate_blocks OF(( |
|---|
| 28 | inflate_blocks_statef *, |
|---|
| 29 | z_streamp , |
|---|
| 30 | int)); /* initial return code */ |
|---|
| 31 | |
|---|
| 32 | extern void inflate_blocks_reset OF(( |
|---|
| 33 | inflate_blocks_statef *, |
|---|
| 34 | z_streamp , |
|---|
| 35 | uLongf *)); /* check value on output */ |
|---|
| 36 | |
|---|
| 37 | extern int inflate_blocks_free OF(( |
|---|
| 38 | inflate_blocks_statef *, |
|---|
| 39 | z_streamp)); |
|---|
| 40 | |
|---|
| 41 | extern void inflate_set_dictionary OF(( |
|---|
| 42 | inflate_blocks_statef *s, |
|---|
| 43 | const Bytef *d, /* dictionary */ |
|---|
| 44 | uInt n)); /* dictionary length */ |
|---|
| 45 | |
|---|
| 46 | extern int inflate_blocks_sync_point OF(( |
|---|
| 47 | inflate_blocks_statef *s)); |
|---|