zlib.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:30k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* zlib.h -- interface of the 'zlib' general purpose compression library
  2.   version 1.1.3, July 9th, 1998
  3.   Copyright (C) 1995-1998 Jean-loup Gailly and Mark Adler
  4.   This software is provided 'as-is', without any express or implied
  5.   warranty.  In no event will the authors be held liable for any damages
  6.   arising from the use of this software.
  7.   Permission is granted to anyone to use this software for any purpose,
  8.   including commercial applications, and to alter it and redistribute it
  9.   freely, subject to the following restrictions:
  10.   1. The origin of this software must not be misrepresented; you must not
  11.      claim that you wrote the original software. If you use this software
  12.      in a product, an acknowledgment in the product documentation would be
  13.      appreciated but is not required.
  14.   2. Altered source versions must be plainly marked as such, and must not be
  15.      misrepresented as being the original software.
  16.   3. This notice may not be removed or altered from any source distribution.
  17.   Jean-loup Gailly        Mark Adler
  18.   jloup@gzip.org          madler@alumni.caltech.edu
  19.   The data format used by the zlib library is described by RFCs (Request for
  20.   Comments) 1950 to 1952 in the files ftp://ds.internic.net/rfc/rfc1950.txt
  21.   (zlib format), rfc1951.txt (deflate format) and rfc1952.txt (gzip format).
  22. */
  23. #ifndef _ZLIB_H
  24. #define _ZLIB_H
  25. #include <linux/zconf.h>
  26. #define ZLIB_VERSION "1.1.3"
  27. /* 
  28.      The 'zlib' compression library provides in-memory compression and
  29.   decompression functions, including integrity checks of the uncompressed
  30.   data.  This version of the library supports only one compression method
  31.   (deflation) but other algorithms will be added later and will have the same
  32.   stream interface.
  33.      Compression can be done in a single step if the buffers are large
  34.   enough (for example if an input file is mmap'ed), or can be done by
  35.   repeated calls of the compression function.  In the latter case, the
  36.   application must provide more input and/or consume the output
  37.   (providing more output space) before each call.
  38.      The library also supports reading and writing files in gzip (.gz) format
  39.   with an interface similar to that of stdio.
  40.      The library does not install any signal handler. The decoder checks
  41.   the consistency of the compressed data, so the library should never
  42.   crash even in case of corrupted input.
  43. */
  44. struct internal_state;
  45. typedef struct z_stream_s {
  46.     Byte    *next_in;   /* next input byte */
  47.     uInt     avail_in;  /* number of bytes available at next_in */
  48.     uLong    total_in;  /* total nb of input bytes read so far */
  49.     Byte    *next_out;  /* next output byte should be put there */
  50.     uInt     avail_out; /* remaining free space at next_out */
  51.     uLong    total_out; /* total nb of bytes output so far */
  52.     char     *msg;      /* last error message, NULL if no error */
  53.     struct internal_state *state; /* not visible by applications */
  54.     void     *workspace; /* memory allocated for this stream */
  55.     int     data_type;  /* best guess about the data type: ascii or binary */
  56.     uLong   adler;      /* adler32 value of the uncompressed data */
  57.     uLong   reserved;   /* reserved for future use */
  58. } z_stream;
  59. typedef z_stream *z_streamp;
  60. /*
  61.    The application must update next_in and avail_in when avail_in has
  62.    dropped to zero. It must update next_out and avail_out when avail_out
  63.    has dropped to zero. The application must initialize zalloc, zfree and
  64.    opaque before calling the init function. All other fields are set by the
  65.    compression library and must not be updated by the application.
  66.    The opaque value provided by the application will be passed as the first
  67.    parameter for calls of zalloc and zfree. This can be useful for custom
  68.    memory management. The compression library attaches no meaning to the
  69.    opaque value.
  70.    zalloc must return NULL if there is not enough memory for the object.
  71.    If zlib is used in a multi-threaded application, zalloc and zfree must be
  72.    thread safe.
  73.    On 16-bit systems, the functions zalloc and zfree must be able to allocate
  74.    exactly 65536 bytes, but will not be required to allocate more than this
  75.    if the symbol MAXSEG_64K is defined (see zconf.h). WARNING: On MSDOS,
  76.    pointers returned by zalloc for objects of exactly 65536 bytes *must*
  77.    have their offset normalized to zero. The default allocation function
  78.    provided by this library ensures this (see zutil.c). To reduce memory
  79.    requirements and avoid any allocation of 64K objects, at the expense of
  80.    compression ratio, compile the library with -DMAX_WBITS=14 (see zconf.h).
  81.    The fields total_in and total_out can be used for statistics or
  82.    progress reports. After compression, total_in holds the total size of
  83.    the uncompressed data and may be saved for use in the decompressor
  84.    (particularly if the decompressor wants to decompress everything in
  85.    a single step).
  86. */
  87.                         /* constants */
  88. #define Z_NO_FLUSH      0
  89. #define Z_PARTIAL_FLUSH 1 /* will be removed, use Z_SYNC_FLUSH instead */
  90. #define Z_PACKET_FLUSH  2
  91. #define Z_SYNC_FLUSH    3
  92. #define Z_FULL_FLUSH    4
  93. #define Z_FINISH        5
  94. /* Allowed flush values; see deflate() below for details */
  95. #define Z_OK            0
  96. #define Z_STREAM_END    1
  97. #define Z_NEED_DICT     2
  98. #define Z_ERRNO        (-1)
  99. #define Z_STREAM_ERROR (-2)
  100. #define Z_DATA_ERROR   (-3)
  101. #define Z_MEM_ERROR    (-4)
  102. #define Z_BUF_ERROR    (-5)
  103. #define Z_VERSION_ERROR (-6)
  104. /* Return codes for the compression/decompression functions. Negative
  105.  * values are errors, positive values are used for special but normal events.
  106.  */
  107. #define Z_NO_COMPRESSION         0
  108. #define Z_BEST_SPEED             1
  109. #define Z_BEST_COMPRESSION       9
  110. #define Z_DEFAULT_COMPRESSION  (-1)
  111. /* compression levels */
  112. #define Z_FILTERED            1
  113. #define Z_HUFFMAN_ONLY        2
  114. #define Z_DEFAULT_STRATEGY    0
  115. /* compression strategy; see deflateInit2() below for details */
  116. #define Z_BINARY   0
  117. #define Z_ASCII    1
  118. #define Z_UNKNOWN  2
  119. /* Possible values of the data_type field */
  120. #define Z_DEFLATED   8
  121. /* The deflate compression method (the only one supported in this version) */
  122.                         /* basic functions */
  123. extern const char * zlib_zlibVersion (void);
  124. /* The application can compare zlibVersion and ZLIB_VERSION for consistency.
  125.    If the first character differs, the library code actually used is
  126.    not compatible with the zlib.h header file used by the application.
  127.    This check is automatically made by deflateInit and inflateInit.
  128.  */
  129. extern int zlib_deflate_workspacesize (void);
  130. /*
  131.    Returns the number of bytes that needs to be allocated for a per-
  132.    stream workspace.  A pointer to this number of bytes should be
  133.    returned in stream->workspace before calling zlib_deflateInit().
  134. */
  135. /* 
  136. extern int deflateInit (z_streamp strm, int level);
  137.      Initializes the internal stream state for compression. The fields
  138.    zalloc, zfree and opaque must be initialized before by the caller.
  139.    If zalloc and zfree are set to NULL, deflateInit updates them to
  140.    use default allocation functions.
  141.      The compression level must be Z_DEFAULT_COMPRESSION, or between 0 and 9:
  142.    1 gives best speed, 9 gives best compression, 0 gives no compression at
  143.    all (the input data is simply copied a block at a time).
  144.    Z_DEFAULT_COMPRESSION requests a default compromise between speed and
  145.    compression (currently equivalent to level 6).
  146.      deflateInit returns Z_OK if success, Z_MEM_ERROR if there was not
  147.    enough memory, Z_STREAM_ERROR if level is not a valid compression level,
  148.    Z_VERSION_ERROR if the zlib library version (zlib_version) is incompatible
  149.    with the version assumed by the caller (ZLIB_VERSION).
  150.    msg is set to null if there is no error message.  deflateInit does not
  151.    perform any compression: this will be done by deflate().
  152. */
  153. extern int zlib_deflate (z_streamp strm, int flush);
  154. /*
  155.     deflate compresses as much data as possible, and stops when the input
  156.   buffer becomes empty or the output buffer becomes full. It may introduce some
  157.   output latency (reading input without producing any output) except when
  158.   forced to flush.
  159.     The detailed semantics are as follows. deflate performs one or both of the
  160.   following actions:
  161.   - Compress more input starting at next_in and update next_in and avail_in
  162.     accordingly. If not all input can be processed (because there is not
  163.     enough room in the output buffer), next_in and avail_in are updated and
  164.     processing will resume at this point for the next call of deflate().
  165.   - Provide more output starting at next_out and update next_out and avail_out
  166.     accordingly. This action is forced if the parameter flush is non zero.
  167.     Forcing flush frequently degrades the compression ratio, so this parameter
  168.     should be set only when necessary (in interactive applications).
  169.     Some output may be provided even if flush is not set.
  170.   Before the call of deflate(), the application should ensure that at least
  171.   one of the actions is possible, by providing more input and/or consuming
  172.   more output, and updating avail_in or avail_out accordingly; avail_out
  173.   should never be zero before the call. The application can consume the
  174.   compressed output when it wants, for example when the output buffer is full
  175.   (avail_out == 0), or after each call of deflate(). If deflate returns Z_OK
  176.   and with zero avail_out, it must be called again after making room in the
  177.   output buffer because there might be more output pending.
  178.     If the parameter flush is set to Z_SYNC_FLUSH, all pending output is
  179.   flushed to the output buffer and the output is aligned on a byte boundary, so
  180.   that the decompressor can get all input data available so far. (In particular
  181.   avail_in is zero after the call if enough output space has been provided
  182.   before the call.)  Flushing may degrade compression for some compression
  183.   algorithms and so it should be used only when necessary.
  184.     If flush is set to Z_FULL_FLUSH, all output is flushed as with
  185.   Z_SYNC_FLUSH, and the compression state is reset so that decompression can
  186.   restart from this point if previous compressed data has been damaged or if
  187.   random access is desired. Using Z_FULL_FLUSH too often can seriously degrade
  188.   the compression.
  189.     If deflate returns with avail_out == 0, this function must be called again
  190.   with the same value of the flush parameter and more output space (updated
  191.   avail_out), until the flush is complete (deflate returns with non-zero
  192.   avail_out).
  193.     If the parameter flush is set to Z_FINISH, pending input is processed,
  194.   pending output is flushed and deflate returns with Z_STREAM_END if there
  195.   was enough output space; if deflate returns with Z_OK, this function must be
  196.   called again with Z_FINISH and more output space (updated avail_out) but no
  197.   more input data, until it returns with Z_STREAM_END or an error. After
  198.   deflate has returned Z_STREAM_END, the only possible operations on the
  199.   stream are deflateReset or deflateEnd.
  200.   
  201.     Z_FINISH can be used immediately after deflateInit if all the compression
  202.   is to be done in a single step. In this case, avail_out must be at least
  203.   0.1% larger than avail_in plus 12 bytes.  If deflate does not return
  204.   Z_STREAM_END, then it must be called again as described above.
  205.     deflate() sets strm->adler to the adler32 checksum of all input read
  206.   so far (that is, total_in bytes).
  207.     deflate() may update data_type if it can make a good guess about
  208.   the input data type (Z_ASCII or Z_BINARY). In doubt, the data is considered
  209.   binary. This field is only for information purposes and does not affect
  210.   the compression algorithm in any manner.
  211.     deflate() returns Z_OK if some progress has been made (more input
  212.   processed or more output produced), Z_STREAM_END if all input has been
  213.   consumed and all output has been produced (only when flush is set to
  214.   Z_FINISH), Z_STREAM_ERROR if the stream state was inconsistent (for example
  215.   if next_in or next_out was NULL), Z_BUF_ERROR if no progress is possible
  216.   (for example avail_in or avail_out was zero).
  217. */
  218. extern int zlib_deflateEnd (z_streamp strm);
  219. /*
  220.      All dynamically allocated data structures for this stream are freed.
  221.    This function discards any unprocessed input and does not flush any
  222.    pending output.
  223.      deflateEnd returns Z_OK if success, Z_STREAM_ERROR if the
  224.    stream state was inconsistent, Z_DATA_ERROR if the stream was freed
  225.    prematurely (some input or output was discarded). In the error case,
  226.    msg may be set but then points to a static string (which must not be
  227.    deallocated).
  228. */
  229. extern int zlib_inflate_workspacesize (void);
  230. /*
  231.    Returns the number of bytes that needs to be allocated for a per-
  232.    stream workspace.  A pointer to this number of bytes should be
  233.    returned in stream->workspace before calling zlib_inflateInit().
  234. */
  235. /* 
  236. extern int zlib_inflateInit (z_streamp strm);
  237.      Initializes the internal stream state for decompression. The fields
  238.    next_in, avail_in, and workspace must be initialized before by
  239.    the caller. If next_in is not NULL and avail_in is large enough (the exact
  240.    value depends on the compression method), inflateInit determines the
  241.    compression method from the zlib header and allocates all data structures
  242.    accordingly; otherwise the allocation will be deferred to the first call of
  243.    inflate.  If zalloc and zfree are set to NULL, inflateInit updates them to
  244.    use default allocation functions.
  245.      inflateInit returns Z_OK if success, Z_MEM_ERROR if there was not enough
  246.    memory, Z_VERSION_ERROR if the zlib library version is incompatible with the
  247.    version assumed by the caller.  msg is set to null if there is no error
  248.    message. inflateInit does not perform any decompression apart from reading
  249.    the zlib header if present: this will be done by inflate().  (So next_in and
  250.    avail_in may be modified, but next_out and avail_out are unchanged.)
  251. */
  252. extern int zlib_inflate (z_streamp strm, int flush);
  253. /*
  254.     inflate decompresses as much data as possible, and stops when the input
  255.   buffer becomes empty or the output buffer becomes full. It may some
  256.   introduce some output latency (reading input without producing any output)
  257.   except when forced to flush.
  258.   The detailed semantics are as follows. inflate performs one or both of the
  259.   following actions:
  260.   - Decompress more input starting at next_in and update next_in and avail_in
  261.     accordingly. If not all input can be processed (because there is not
  262.     enough room in the output buffer), next_in is updated and processing
  263.     will resume at this point for the next call of inflate().
  264.   - Provide more output starting at next_out and update next_out and avail_out
  265.     accordingly.  inflate() provides as much output as possible, until there
  266.     is no more input data or no more space in the output buffer (see below
  267.     about the flush parameter).
  268.   Before the call of inflate(), the application should ensure that at least
  269.   one of the actions is possible, by providing more input and/or consuming
  270.   more output, and updating the next_* and avail_* values accordingly.
  271.   The application can consume the uncompressed output when it wants, for
  272.   example when the output buffer is full (avail_out == 0), or after each
  273.   call of inflate(). If inflate returns Z_OK and with zero avail_out, it
  274.   must be called again after making room in the output buffer because there
  275.   might be more output pending.
  276.     If the parameter flush is set to Z_SYNC_FLUSH, inflate flushes as much
  277.   output as possible to the output buffer. The flushing behavior of inflate is
  278.   not specified for values of the flush parameter other than Z_SYNC_FLUSH
  279.   and Z_FINISH, but the current implementation actually flushes as much output
  280.   as possible anyway.
  281.     inflate() should normally be called until it returns Z_STREAM_END or an
  282.   error. However if all decompression is to be performed in a single step
  283.   (a single call of inflate), the parameter flush should be set to
  284.   Z_FINISH. In this case all pending input is processed and all pending
  285.   output is flushed; avail_out must be large enough to hold all the
  286.   uncompressed data. (The size of the uncompressed data may have been saved
  287.   by the compressor for this purpose.) The next operation on this stream must
  288.   be inflateEnd to deallocate the decompression state. The use of Z_FINISH
  289.   is never required, but can be used to inform inflate that a faster routine
  290.   may be used for the single inflate() call.
  291.      If a preset dictionary is needed at this point (see inflateSetDictionary
  292.   below), inflate sets strm-adler to the adler32 checksum of the
  293.   dictionary chosen by the compressor and returns Z_NEED_DICT; otherwise 
  294.   it sets strm->adler to the adler32 checksum of all output produced
  295.   so far (that is, total_out bytes) and returns Z_OK, Z_STREAM_END or
  296.   an error code as described below. At the end of the stream, inflate()
  297.   checks that its computed adler32 checksum is equal to that saved by the
  298.   compressor and returns Z_STREAM_END only if the checksum is correct.
  299.     inflate() returns Z_OK if some progress has been made (more input processed
  300.   or more output produced), Z_STREAM_END if the end of the compressed data has
  301.   been reached and all uncompressed output has been produced, Z_NEED_DICT if a
  302.   preset dictionary is needed at this point, Z_DATA_ERROR if the input data was
  303.   corrupted (input stream not conforming to the zlib format or incorrect
  304.   adler32 checksum), Z_STREAM_ERROR if the stream structure was inconsistent
  305.   (for example if next_in or next_out was NULL), Z_MEM_ERROR if there was not
  306.   enough memory, Z_BUF_ERROR if no progress is possible or if there was not
  307.   enough room in the output buffer when Z_FINISH is used. In the Z_DATA_ERROR
  308.   case, the application may then call inflateSync to look for a good
  309.   compression block.
  310. */
  311. extern int zlib_inflateEnd (z_streamp strm);
  312. /*
  313.      All dynamically allocated data structures for this stream are freed.
  314.    This function discards any unprocessed input and does not flush any
  315.    pending output.
  316.      inflateEnd returns Z_OK if success, Z_STREAM_ERROR if the stream state
  317.    was inconsistent. In the error case, msg may be set but then points to a
  318.    static string (which must not be deallocated).
  319. */
  320.                         /* Advanced functions */
  321. /*
  322.     The following functions are needed only in some special applications.
  323. */
  324. /*   
  325. extern int deflateInit2 (z_streamp strm,
  326.                                      int  level,
  327.                                      int  method,
  328.                                      int  windowBits,
  329.                                      int  memLevel,
  330.                                      int  strategy);
  331.      This is another version of deflateInit with more compression options. The
  332.    fields next_in, zalloc, zfree and opaque must be initialized before by
  333.    the caller.
  334.      The method parameter is the compression method. It must be Z_DEFLATED in
  335.    this version of the library.
  336.      The windowBits parameter is the base two logarithm of the window size
  337.    (the size of the history buffer).  It should be in the range 8..15 for this
  338.    version of the library. Larger values of this parameter result in better
  339.    compression at the expense of memory usage. The default value is 15 if
  340.    deflateInit is used instead.
  341.      The memLevel parameter specifies how much memory should be allocated
  342.    for the internal compression state. memLevel=1 uses minimum memory but
  343.    is slow and reduces compression ratio; memLevel=9 uses maximum memory
  344.    for optimal speed. The default value is 8. See zconf.h for total memory
  345.    usage as a function of windowBits and memLevel.
  346.      The strategy parameter is used to tune the compression algorithm. Use the
  347.    value Z_DEFAULT_STRATEGY for normal data, Z_FILTERED for data produced by a
  348.    filter (or predictor), or Z_HUFFMAN_ONLY to force Huffman encoding only (no
  349.    string match).  Filtered data consists mostly of small values with a
  350.    somewhat random distribution. In this case, the compression algorithm is
  351.    tuned to compress them better. The effect of Z_FILTERED is to force more
  352.    Huffman coding and less string matching; it is somewhat intermediate
  353.    between Z_DEFAULT and Z_HUFFMAN_ONLY. The strategy parameter only affects
  354.    the compression ratio but not the correctness of the compressed output even
  355.    if it is not set appropriately.
  356.       deflateInit2 returns Z_OK if success, Z_MEM_ERROR if there was not enough
  357.    memory, Z_STREAM_ERROR if a parameter is invalid (such as an invalid
  358.    method). msg is set to null if there is no error message.  deflateInit2 does
  359.    not perform any compression: this will be done by deflate().
  360. */
  361.                             
  362. extern int zlib_deflateSetDictionary (z_streamp strm,
  363.      const Byte *dictionary,
  364.      uInt  dictLength);
  365. /*
  366.      Initializes the compression dictionary from the given byte sequence
  367.    without producing any compressed output. This function must be called
  368.    immediately after deflateInit, deflateInit2 or deflateReset, before any
  369.    call of deflate. The compressor and decompressor must use exactly the same
  370.    dictionary (see inflateSetDictionary).
  371.      The dictionary should consist of strings (byte sequences) that are likely
  372.    to be encountered later in the data to be compressed, with the most commonly
  373.    used strings preferably put towards the end of the dictionary. Using a
  374.    dictionary is most useful when the data to be compressed is short and can be
  375.    predicted with good accuracy; the data can then be compressed better than
  376.    with the default empty dictionary.
  377.      Depending on the size of the compression data structures selected by
  378.    deflateInit or deflateInit2, a part of the dictionary may in effect be
  379.    discarded, for example if the dictionary is larger than the window size in
  380.    deflate or deflate2. Thus the strings most likely to be useful should be
  381.    put at the end of the dictionary, not at the front.
  382.      Upon return of this function, strm->adler is set to the Adler32 value
  383.    of the dictionary; the decompressor may later use this value to determine
  384.    which dictionary has been used by the compressor. (The Adler32 value
  385.    applies to the whole dictionary even if only a subset of the dictionary is
  386.    actually used by the compressor.)
  387.      deflateSetDictionary returns Z_OK if success, or Z_STREAM_ERROR if a
  388.    parameter is invalid (such as NULL dictionary) or the stream state is
  389.    inconsistent (for example if deflate has already been called for this stream
  390.    or if the compression method is bsort). deflateSetDictionary does not
  391.    perform any compression: this will be done by deflate().
  392. */
  393. extern int zlib_deflateCopy (z_streamp dest, z_streamp source);
  394. /*
  395.      Sets the destination stream as a complete copy of the source stream.
  396.      This function can be useful when several compression strategies will be
  397.    tried, for example when there are several ways of pre-processing the input
  398.    data with a filter. The streams that will be discarded should then be freed
  399.    by calling deflateEnd.  Note that deflateCopy duplicates the internal
  400.    compression state which can be quite large, so this strategy is slow and
  401.    can consume lots of memory.
  402.      deflateCopy returns Z_OK if success, Z_MEM_ERROR if there was not
  403.    enough memory, Z_STREAM_ERROR if the source stream state was inconsistent
  404.    (such as zalloc being NULL). msg is left unchanged in both source and
  405.    destination.
  406. */
  407. extern int zlib_deflateReset (z_streamp strm);
  408. /*
  409.      This function is equivalent to deflateEnd followed by deflateInit,
  410.    but does not free and reallocate all the internal compression state.
  411.    The stream will keep the same compression level and any other attributes
  412.    that may have been set by deflateInit2.
  413.       deflateReset returns Z_OK if success, or Z_STREAM_ERROR if the source
  414.    stream state was inconsistent (such as zalloc or state being NULL).
  415. */
  416. static inline unsigned long deflateBound(unsigned long s)
  417. {
  418. return s + ((s + 7) >> 3) + ((s + 63) >> 6) + 11;
  419. }
  420. extern int zlib_deflateParams (z_streamp strm, int level, int strategy);
  421. /*
  422.      Dynamically update the compression level and compression strategy.  The
  423.    interpretation of level and strategy is as in deflateInit2.  This can be
  424.    used to switch between compression and straight copy of the input data, or
  425.    to switch to a different kind of input data requiring a different
  426.    strategy. If the compression level is changed, the input available so far
  427.    is compressed with the old level (and may be flushed); the new level will
  428.    take effect only at the next call of deflate().
  429.      Before the call of deflateParams, the stream state must be set as for
  430.    a call of deflate(), since the currently available input may have to
  431.    be compressed and flushed. In particular, strm->avail_out must be non-zero.
  432.      deflateParams returns Z_OK if success, Z_STREAM_ERROR if the source
  433.    stream state was inconsistent or if a parameter was invalid, Z_BUF_ERROR
  434.    if strm->avail_out was zero.
  435. */
  436. /*   
  437. extern int inflateInit2 (z_streamp strm, int  windowBits);
  438.      This is another version of inflateInit with an extra parameter. The
  439.    fields next_in, avail_in, zalloc, zfree and opaque must be initialized
  440.    before by the caller.
  441.      The windowBits parameter is the base two logarithm of the maximum window
  442.    size (the size of the history buffer).  It should be in the range 8..15 for
  443.    this version of the library. The default value is 15 if inflateInit is used
  444.    instead. If a compressed stream with a larger window size is given as
  445.    input, inflate() will return with the error code Z_DATA_ERROR instead of
  446.    trying to allocate a larger window.
  447.       inflateInit2 returns Z_OK if success, Z_MEM_ERROR if there was not enough
  448.    memory, Z_STREAM_ERROR if a parameter is invalid (such as a negative
  449.    memLevel). msg is set to null if there is no error message.  inflateInit2
  450.    does not perform any decompression apart from reading the zlib header if
  451.    present: this will be done by inflate(). (So next_in and avail_in may be
  452.    modified, but next_out and avail_out are unchanged.)
  453. */
  454. extern int zlib_inflateSetDictionary (z_streamp strm,
  455.      const Byte *dictionary,
  456.      uInt  dictLength);
  457. /*
  458.      Initializes the decompression dictionary from the given uncompressed byte
  459.    sequence. This function must be called immediately after a call of inflate
  460.    if this call returned Z_NEED_DICT. The dictionary chosen by the compressor
  461.    can be determined from the Adler32 value returned by this call of
  462.    inflate. The compressor and decompressor must use exactly the same
  463.    dictionary (see deflateSetDictionary).
  464.      inflateSetDictionary returns Z_OK if success, Z_STREAM_ERROR if a
  465.    parameter is invalid (such as NULL dictionary) or the stream state is
  466.    inconsistent, Z_DATA_ERROR if the given dictionary doesn't match the
  467.    expected one (incorrect Adler32 value). inflateSetDictionary does not
  468.    perform any decompression: this will be done by subsequent calls of
  469.    inflate().
  470. */
  471. extern int zlib_inflateSync (z_streamp strm);
  472. /* 
  473.     Skips invalid compressed data until a full flush point (see above the
  474.   description of deflate with Z_FULL_FLUSH) can be found, or until all
  475.   available input is skipped. No output is provided.
  476.     inflateSync returns Z_OK if a full flush point has been found, Z_BUF_ERROR
  477.   if no more input was provided, Z_DATA_ERROR if no flush point has been found,
  478.   or Z_STREAM_ERROR if the stream structure was inconsistent. In the success
  479.   case, the application may save the current current value of total_in which
  480.   indicates where valid compressed data was found. In the error case, the
  481.   application may repeatedly call inflateSync, providing more input each time,
  482.   until success or end of the input data.
  483. */
  484. extern int zlib_inflateReset (z_streamp strm);
  485. /*
  486.      This function is equivalent to inflateEnd followed by inflateInit,
  487.    but does not free and reallocate all the internal decompression state.
  488.    The stream will keep attributes that may have been set by inflateInit2.
  489.       inflateReset returns Z_OK if success, or Z_STREAM_ERROR if the source
  490.    stream state was inconsistent (such as zalloc or state being NULL).
  491. */
  492. extern int zlib_inflateIncomp (z_stream *strm);
  493. /*
  494.      This function adds the data at next_in (avail_in bytes) to the output
  495.    history without performing any output.  There must be no pending output,
  496.    and the decompressor must be expecting to see the start of a block.
  497.    Calling this function is equivalent to decompressing a stored block
  498.    containing the data at next_in (except that the data is not output).
  499. */
  500.                         /* various hacks, don't look :) */
  501. /* deflateInit and inflateInit are macros to allow checking the zlib version
  502.  * and the compiler's view of z_stream:
  503.  */
  504. extern int zlib_deflateInit_ (z_streamp strm, int level,
  505.                                      const char *version, int stream_size);
  506. extern int zlib_inflateInit_ (z_streamp strm,
  507.                                      const char *version, int stream_size);
  508. extern int zlib_deflateInit2_ (z_streamp strm, int  level, int  method,
  509.                                       int windowBits, int memLevel,
  510.                                       int strategy, const char *version,
  511.                                       int stream_size);
  512. extern int zlib_inflateInit2_ (z_streamp strm, int  windowBits,
  513.                                       const char *version, int stream_size);
  514. #define zlib_deflateInit(strm, level) 
  515.         zlib_deflateInit_((strm), (level), ZLIB_VERSION, sizeof(z_stream))
  516. #define zlib_inflateInit(strm) 
  517.         zlib_inflateInit_((strm), ZLIB_VERSION, sizeof(z_stream))
  518. #define zlib_deflateInit2(strm, level, method, windowBits, memLevel, strategy) 
  519.         zlib_deflateInit2_((strm),(level),(method),(windowBits),(memLevel),
  520.                       (strategy), ZLIB_VERSION, sizeof(z_stream))
  521. #define zlib_inflateInit2(strm, windowBits) 
  522.         zlib_inflateInit2_((strm), (windowBits), ZLIB_VERSION, sizeof(z_stream))
  523. #if !defined(_Z_UTIL_H) && !defined(NO_DUMMY_DECL)
  524.     struct internal_state {int dummy;}; /* hack for buggy compilers */
  525. #endif
  526. extern const char  * zlib_zError           (int err);
  527. extern int           zlib_inflateSyncPoint (z_streamp z);
  528. extern const uLong * zlib_get_crc_table    (void);
  529. #endif /* _ZLIB_H */