source: svn/newcon3bcm2_21bu/dst/dlib/src/ZLIB/infcodes.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: 981 bytes
Line 
1/*
2 * $Id: //suprahd/releases/suprahd_163/suprahd_ztvapp640_163/drivers/graphics/ZLIB/infcodes.h#1 $
3 * $Revision: #1 $
4 * $DateTime: 2006/02/24 17:51:46 $
5 * $Change: 42566 $
6 * $Author: pryush.sharma $
7 */
8
9/* infcodes.h -- header to use infcodes.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_codes_state;
20typedef struct inflate_codes_state FAR inflate_codes_statef;
21
22extern inflate_codes_statef *inflate_codes_new OF((
23    uInt, uInt,
24    inflate_huft *, inflate_huft *,
25    z_streamp ));
26
27extern int inflate_codes OF((
28    inflate_blocks_statef *,
29    z_streamp ,
30    int));
31
32extern void inflate_codes_free OF((
33    inflate_codes_statef *,
34    z_streamp ));
35
Note: See TracBrowser for help on using the repository browser.