OSDN Git Service

RebaseDlg: Disable Reset\Swtich Command at context menu.
[tortoisegit/TortoiseGitJp.git] / src / crashrpt / zlib / infblock.h
1 /* infblock.h -- header to use infblock.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_blocks_state;\r
12 typedef struct inflate_blocks_state FAR inflate_blocks_statef;\r
13 \r
14 extern inflate_blocks_statef * inflate_blocks_new OF((\r
15     z_streamp z,\r
16     check_func c,               /* check function */\r
17     uInt w));                   /* window size */\r
18 \r
19 extern int inflate_blocks OF((\r
20     inflate_blocks_statef *,\r
21     z_streamp ,\r
22     int));                      /* initial return code */\r
23 \r
24 extern void inflate_blocks_reset OF((\r
25     inflate_blocks_statef *,\r
26     z_streamp ,\r
27     uLongf *));                  /* check value on output */\r
28 \r
29 extern int inflate_blocks_free OF((\r
30     inflate_blocks_statef *,\r
31     z_streamp));\r
32 \r
33 extern void inflate_set_dictionary OF((\r
34     inflate_blocks_statef *s,\r
35     const Bytef *d,  /* dictionary */\r
36     uInt  n));       /* dictionary length */\r
37 \r
38 extern int inflate_blocks_sync_point OF((\r
39     inflate_blocks_statef *s));\r