diff options
Diffstat (limited to 'contrib/infback9/infback9.h')
-rw-r--r-- | contrib/infback9/infback9.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/contrib/infback9/infback9.h b/contrib/infback9/infback9.h index fb7c73e..10bf58c 100644 --- a/contrib/infback9/infback9.h +++ b/contrib/infback9/infback9.h | |||
@@ -7,10 +7,13 @@ | |||
7 | * This header file and associated patches provide a decoder for PKWare's | 7 | * This header file and associated patches provide a decoder for PKWare's |
8 | * undocumented deflate64 compression method (method 9). Use with infback9.c, | 8 | * undocumented deflate64 compression method (method 9). Use with infback9.c, |
9 | * inftree9.h, inftree9.c, and inffix9.h. These patches are not supported. | 9 | * inftree9.h, inftree9.c, and inffix9.h. These patches are not supported. |
10 | * This code will almost certainly not work on 16-bit architectures. See the | 10 | * This should be compiled with zlib, since it uses zutil.h and zutil.o. |
11 | * This code has not yet been tested on 16-bit architectures. See the | ||
11 | * comments in zlib.h for inflateBack() usage. These functions are used | 12 | * comments in zlib.h for inflateBack() usage. These functions are used |
12 | * identically, except that there is no windowBits parameter, and a 64K | 13 | * identically, except that there is no windowBits parameter, and a 64K |
13 | * window must be provided. zlib.h must be included before this header file. | 14 | * window must be provided. Also if int's are 16 bits, then a zero for |
15 | * the third parameter of the "out" function actually means 65536UL. | ||
16 | * zlib.h must be included before this header file. | ||
14 | */ | 17 | */ |
15 | 18 | ||
16 | ZEXTERN int ZEXPORT inflateBack9 OF((z_stream FAR *strm, | 19 | ZEXTERN int ZEXPORT inflateBack9 OF((z_stream FAR *strm, |