source: svn/newcon3bcm2_21bu/dst/dlib/src/ZLIB/infblock.h

Last change on this file was 76, checked in by megakiss, 10 years ago

1W 대기전력을 만족시키기 위하여 POWEROFF시 튜너를 Standby 상태로 함

  • Property svn:executable set to *
File size: 1.4 KB
Line 
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
19struct inflate_blocks_state;
20typedef struct inflate_blocks_state FAR inflate_blocks_statef;
21
22extern inflate_blocks_statef * inflate_blocks_new OF((
23    z_streamp z,
24    check_func c,               /* check function */
25    uInt w));                   /* window size */
26
27extern int inflate_blocks OF((
28    inflate_blocks_statef *,
29    z_streamp ,
30    int));                      /* initial return code */
31
32extern void inflate_blocks_reset OF((
33    inflate_blocks_statef *,
34    z_streamp ,
35    uLongf *));                  /* check value on output */
36
37extern int inflate_blocks_free OF((
38    inflate_blocks_statef *,
39    z_streamp));
40
41extern void inflate_set_dictionary OF((
42    inflate_blocks_statef *s,
43    const Bytef *d,  /* dictionary */
44    uInt  n));       /* dictionary length */
45
46extern int inflate_blocks_sync_point OF((
47    inflate_blocks_statef *s));
Note: See TracBrowser for help on using the repository browser.