zlib_fs.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:31k
源码类别:

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