annotate src/zlib-1.2.8/contrib/infback9/infback9.h @ 84:08ae793730bd

Add null config files
author Chris Cannam
date Mon, 02 Mar 2020 14:03:47 +0000
parents 5ea0608b923f
children
rev   line source
Chris@43 1 /* infback9.h -- header for using inflateBack9 functions
Chris@43 2 * Copyright (C) 2003 Mark Adler
Chris@43 3 * For conditions of distribution and use, see copyright notice in zlib.h
Chris@43 4 */
Chris@43 5
Chris@43 6 /*
Chris@43 7 * This header file and associated patches provide a decoder for PKWare's
Chris@43 8 * undocumented deflate64 compression method (method 9). Use with infback9.c,
Chris@43 9 * inftree9.h, inftree9.c, and inffix9.h. These patches are not supported.
Chris@43 10 * This should be compiled with zlib, since it uses zutil.h and zutil.o.
Chris@43 11 * This code has not yet been tested on 16-bit architectures. See the
Chris@43 12 * comments in zlib.h for inflateBack() usage. These functions are used
Chris@43 13 * identically, except that there is no windowBits parameter, and a 64K
Chris@43 14 * window must be provided. Also if int's are 16 bits, then a zero for
Chris@43 15 * the third parameter of the "out" function actually means 65536UL.
Chris@43 16 * zlib.h must be included before this header file.
Chris@43 17 */
Chris@43 18
Chris@43 19 #ifdef __cplusplus
Chris@43 20 extern "C" {
Chris@43 21 #endif
Chris@43 22
Chris@43 23 ZEXTERN int ZEXPORT inflateBack9 OF((z_stream FAR *strm,
Chris@43 24 in_func in, void FAR *in_desc,
Chris@43 25 out_func out, void FAR *out_desc));
Chris@43 26 ZEXTERN int ZEXPORT inflateBack9End OF((z_stream FAR *strm));
Chris@43 27 ZEXTERN int ZEXPORT inflateBack9Init_ OF((z_stream FAR *strm,
Chris@43 28 unsigned char FAR *window,
Chris@43 29 const char *version,
Chris@43 30 int stream_size));
Chris@43 31 #define inflateBack9Init(strm, window) \
Chris@43 32 inflateBack9Init_((strm), (window), \
Chris@43 33 ZLIB_VERSION, sizeof(z_stream))
Chris@43 34
Chris@43 35 #ifdef __cplusplus
Chris@43 36 }
Chris@43 37 #endif