OSDN Git Service

RebaseDlg: Disable Reset\Swtich Command at context menu.
[tortoisegit/TortoiseGitJp.git] / src / crashrpt / zlib / infcodes.h
1 /* infcodes.h -- header to use infcodes.c\r
2  * Copyright (C) 1995-2002 Mark Adler\r
3  * For conditions of distribution and use, see copyright notice in zlib.h \r
4  */\r
5 \r
6 /* WARNING: this file should *not* be used by applications. It is\r
7    part of the implementation of the compression library and is\r
8    subject to change. Applications should only use zlib.h.\r
9  */\r
10 \r
11 struct inflate_codes_state;\r
12 typedef struct inflate_codes_state FAR inflate_codes_statef;\r
13 \r
14 extern inflate_codes_statef *inflate_codes_new OF((\r
15     uInt, uInt,\r
16     inflate_huft *, inflate_huft *,\r
17     z_streamp ));\r
18 \r
19 extern int inflate_codes OF((\r
20     inflate_blocks_statef *,\r
21     z_streamp ,\r
22     int));\r
23 \r
24 extern void inflate_codes_free OF((\r
25     inflate_codes_statef *,\r
26     z_streamp ));\r
27 \r