zlib.h
上传用户:lyxiangda
上传日期:2007-01-12
资源大小:3042k
文件大小:39k
源码类别:

CA认证

开发平台:

WINDOWS

  1. /* zlib.h -- interface of the 'zlib' general purpose compression library
  2.   version 1.0.4, Jul 24th, 1996.
  3.   Copyright (C) 1995-1996 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.   gzip@prep.ai.mit.edu    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. /* This file was modified since it was taken from the zlib distribution */
  24. #ifndef _ZLIB_H
  25. #define _ZLIB_H
  26. #ifdef __cplusplus
  27. extern "C" {
  28. #endif
  29. #include "zconf.h"
  30. #define ZLIB_VERSION "1.0.4"
  31. /* 
  32.      The 'zlib' compression library provides in-memory compression and
  33.   decompression functions, including integrity checks of the uncompressed
  34.   data.  This version of the library supports only one compression method
  35.   (deflation) but other algorithms may be added later and will have the same
  36.   stream interface.
  37.      For compression the application must provide the output buffer and
  38.   may optionally provide the input buffer for optimization. For decompression,
  39.   the application must provide the input buffer and may optionally provide
  40.   the output buffer for optimization.
  41.      Compression can be done in a single step if the buffers are large
  42.   enough (for example if an input file is mmap'ed), or can be done by
  43.   repeated calls of the compression function.  In the latter case, the
  44.   application must provide more input and/or consume the output
  45.   (providing more output space) before each call.
  46.      The library does not install any signal handler. It is recommended to
  47.   add at least a handler for SIGSEGV when decompressing; the library checks
  48.   the consistency of the input data whenever possible but may go nuts
  49.   for some forms of corrupted input.
  50. */
  51. typedef voidpf (*alloc_func) OF((voidpf opaque, uInt items, uInt size));
  52. typedef void   (*free_func)  OF((voidpf opaque, voidpf address));
  53. struct internal_state;
  54. typedef struct z_stream_s {
  55.     Bytef    *next_in;  /* next input byte */
  56.     uInt     avail_in;  /* number of bytes available at next_in */
  57.     uLong    total_in;  /* total nb of input bytes read so far */
  58.     Bytef    *next_out; /* next output byte should be put there */
  59.     uInt     avail_out; /* remaining free space at next_out */
  60.     uLong    total_out; /* total nb of bytes output so far */
  61.     char     *msg;      /* last error message, NULL if no error */
  62.     struct internal_state FAR *state; /* not visible by applications */
  63.     alloc_func zalloc;  /* used to allocate the internal state */
  64.     free_func  zfree;   /* used to free the internal state */
  65.     voidpf     opaque;  /* private data object passed to zalloc and zfree */
  66.     int     data_type;  /* best guess about the data type: ascii or binary */
  67.     uLong   adler;      /* adler32 value of the uncompressed data */
  68.     uLong   reserved;   /* reserved for future use */
  69. } z_stream;
  70. typedef z_stream FAR *z_streamp;
  71. /*
  72.    The application must update next_in and avail_in when avail_in has
  73.    dropped to zero. It must update next_out and avail_out when avail_out
  74.    has dropped to zero. The application must initialize zalloc, zfree and
  75.    opaque before calling the init function. All other fields are set by the
  76.    compression library and must not be updated by the application.
  77.    The opaque value provided by the application will be passed as the first
  78.    parameter for calls of zalloc and zfree. This can be useful for custom
  79.    memory management. The compression library attaches no meaning to the
  80.    opaque value.
  81.    zalloc must return Z_NULL if there is not enough memory for the object.
  82.    On 16-bit systems, the functions zalloc and zfree must be able to allocate
  83.    exactly 65536 bytes, but will not be required to allocate more than this
  84.    if the symbol MAXSEG_64K is defined (see zconf.h). WARNING: On MSDOS,
  85.    pointers returned by zalloc for objects of exactly 65536 bytes *must*
  86.    have their offset normalized to zero. The default allocation function
  87.    provided by this library ensures this (see zutil.c). To reduce memory
  88.    requirements and avoid any allocation of 64K objects, at the expense of
  89.    compression ratio, compile the library with -DMAX_WBITS=14 (see zconf.h).
  90.    The fields total_in and total_out can be used for statistics or
  91.    progress reports. After compression, total_in holds the total size of
  92.    the uncompressed data and may be saved for use in the decompressor
  93.    (particularly if the decompressor wants to decompress everything in
  94.    a single step).
  95. */
  96.                         /* constants */
  97. #define Z_NO_FLUSH      0
  98. #define Z_PARTIAL_FLUSH 1
  99. #define Z_SYNC_FLUSH    2
  100. #define Z_FULL_FLUSH    3
  101. #define Z_FINISH        4
  102. /* Allowed flush values; see deflate() below for details */
  103. #define Z_OK            0
  104. #define Z_STREAM_END    1
  105. #define Z_NEED_DICT     2
  106. #define Z_ERRNO        (-1)
  107. #define Z_STREAM_ERROR (-2)
  108. #define Z_DATA_ERROR   (-3)
  109. #define Z_MEM_ERROR    (-4)
  110. #define Z_BUF_ERROR    (-5)
  111. #define Z_VERSION_ERROR (-6)
  112. /* Return codes for the compression/decompression functions. Negative
  113.  * values are errors, positive values are used for special but normal events.
  114.  */
  115. #define Z_NO_COMPRESSION         0
  116. #define Z_BEST_SPEED             1
  117. #define Z_BEST_COMPRESSION       9
  118. #define Z_DEFAULT_COMPRESSION  (-1)
  119. /* compression levels */
  120. #define Z_FILTERED            1
  121. #define Z_HUFFMAN_ONLY        2
  122. #define Z_DEFAULT_STRATEGY    0
  123. /* compression strategy; see deflateInit2() below for details */
  124. #define Z_BINARY   0
  125. #define Z_ASCII    1
  126. #define Z_UNKNOWN  2
  127. /* Possible values of the data_type field */
  128. #define Z_DEFLATED   8
  129. /* The deflate compression method (the only one supported in this version) */
  130. #define Z_NULL  0  /* for initializing zalloc, zfree, opaque */
  131. #define zlib_version zlibVersion()
  132. /* for compatibility with versions < 1.0.2 */
  133.                         /* basic functions */
  134. #ifdef MOZILLA_CLIENT
  135. PR_PUBLIC_API(extern const char *) zlibVersion (void);
  136. #else
  137. extern const char * EXPORT zlibVersion OF((void));
  138. #endif
  139. /* The application can compare zlibVersion and ZLIB_VERSION for consistency.
  140.    If the first character differs, the library code actually used is
  141.    not compatible with the zlib.h header file used by the application.
  142.    This check is automatically made by deflateInit and inflateInit.
  143.  */
  144. /* 
  145. extern int EXPORT deflateInit OF((z_streamp strm, int level));
  146.      Initializes the internal stream state for compression. The fields
  147.    zalloc, zfree and opaque must be initialized before by the caller.
  148.    If zalloc and zfree are set to Z_NULL, deflateInit updates them to
  149.    use default allocation functions.
  150.      The compression level must be Z_DEFAULT_COMPRESSION, or between 0 and 9:
  151.    1 gives best speed, 9 gives best compression, 0 gives no compression at
  152.    all (the input data is simply copied a block at a time).
  153.    Z_DEFAULT_COMPRESSION requests a default compromise between speed and
  154.    compression (currently equivalent to level 6).
  155.      deflateInit returns Z_OK if success, Z_MEM_ERROR if there was not
  156.    enough memory, Z_STREAM_ERROR if level is not a valid compression level,
  157.    Z_VERSION_ERROR if the zlib library version (zlib_version) is incompatible
  158.    with the version assumed by the caller (ZLIB_VERSION).
  159.    msg is set to null if there is no error message.  deflateInit does not
  160.    perform any compression: this will be done by deflate().
  161. */
  162. #ifdef MOZILLA_CLIENT
  163. PR_PUBLIC_API(extern int) deflate (z_streamp strm, int flush);
  164. #else
  165. extern int EXPORT deflate OF((z_streamp strm, int flush));
  166. #endif
  167. /*
  168.   Performs one or both of the following actions:
  169.   - Compress more input starting at next_in and update next_in and avail_in
  170.     accordingly. If not all input can be processed (because there is not
  171.     enough room in the output buffer), next_in and avail_in are updated and
  172.     processing will resume at this point for the next call of deflate().
  173.   - Provide more output starting at next_out and update next_out and avail_out
  174.     accordingly. This action is forced if the parameter flush is non zero.
  175.     Forcing flush frequently degrades the compression ratio, so this parameter
  176.     should be set only when necessary (in interactive applications).
  177.     Some output may be provided even if flush is not set.
  178.   Before the call of deflate(), the application should ensure that at least
  179.   one of the actions is possible, by providing more input and/or consuming
  180.   more output, and updating avail_in or avail_out accordingly; avail_out
  181.   should never be zero before the call. The application can consume the
  182.   compressed output when it wants, for example when the output buffer is full
  183.   (avail_out == 0), or after each call of deflate(). If deflate returns Z_OK
  184.   and with zero avail_out, it must be called again after making room in the
  185.   output buffer because there might be more output pending.
  186.     If the parameter flush is set to Z_PARTIAL_FLUSH, the current compression
  187.   block is terminated and flushed to the output buffer so that the
  188.   decompressor can get all input data available so far. For method 9, a future
  189.   variant on method 8, the current block will be flushed but not terminated.
  190.   Z_SYNC_FLUSH has the same effect as partial flush except that the compressed
  191.   output is byte aligned (the compressor can clear its internal bit buffer)
  192.   and the current block is always terminated; this can be useful if the
  193.   compressor has to be restarted from scratch after an interruption (in which
  194.   case the internal state of the compressor may be lost).
  195.     If flush is set to Z_FULL_FLUSH, the compression block is terminated, a
  196.   special marker is output and the compression dictionary is discarded; this
  197.   is useful to allow the decompressor to synchronize if one compressed block
  198.   has been damaged (see inflateSync below).  Flushing degrades compression and
  199.   so should be used only when necessary.  Using Z_FULL_FLUSH too often can
  200.   seriously degrade the compression. If deflate returns with avail_out == 0,
  201.   this function must be called again with the same value of the flush
  202.   parameter and more output space (updated avail_out), until the flush is
  203.   complete (deflate returns with non-zero avail_out).
  204.     If the parameter flush is set to Z_FINISH, pending input is processed,
  205.   pending output is flushed and deflate returns with Z_STREAM_END if there
  206.   was enough output space; if deflate returns with Z_OK, this function must be
  207.   called again with Z_FINISH and more output space (updated avail_out) but no
  208.   more input data, until it returns with Z_STREAM_END or an error. After
  209.   deflate has returned Z_STREAM_END, the only possible operations on the
  210.   stream are deflateReset or deflateEnd.
  211.   
  212.     Z_FINISH can be used immediately after deflateInit if all the compression
  213.   is to be done in a single step. In this case, avail_out must be at least
  214.   0.1% larger than avail_in plus 12 bytes.  If deflate does not return
  215.   Z_STREAM_END, then it must be called again as described above.
  216.     deflate() may update data_type if it can make a good guess about
  217.   the input data type (Z_ASCII or Z_BINARY). In doubt, the data is considered
  218.   binary. This field is only for information purposes and does not affect
  219.   the compression algorithm in any manner.
  220.     deflate() returns Z_OK if some progress has been made (more input
  221.   processed or more output produced), Z_STREAM_END if all input has been
  222.   consumed and all output has been produced (only when flush is set to
  223.   Z_FINISH), Z_STREAM_ERROR if the stream state was inconsistent (for example
  224.   if next_in or next_out was NULL), Z_BUF_ERROR if no progress is possible.
  225. */
  226. #ifdef MOZILLA_CLIENT
  227. PR_PUBLIC_API(extern int) deflateEnd (z_streamp strm);
  228. #else
  229. extern int EXPORT deflateEnd OF((z_streamp strm));
  230. #endif
  231. /*
  232.      All dynamically allocated data structures for this stream are freed.
  233.    This function discards any unprocessed input and does not flush any
  234.    pending output.
  235.      deflateEnd returns Z_OK if success, Z_STREAM_ERROR if the
  236.    stream state was inconsistent, Z_DATA_ERROR if the stream was freed
  237.    prematurely (some input or output was discarded). In the error case,
  238.    msg may be set but then points to a static string (which must not be
  239.    deallocated).
  240. */
  241. /* 
  242. extern int EXPORT inflateInit OF((z_streamp strm));
  243.      Initializes the internal stream state for decompression. The fields
  244.    zalloc, zfree and opaque must be initialized before by the caller.  If
  245.    zalloc and zfree are set to Z_NULL, inflateInit updates them to use default
  246.    allocation functions.
  247.      inflateInit returns Z_OK if success, Z_MEM_ERROR if there was not
  248.    enough memory, Z_VERSION_ERROR if the zlib library version is incompatible
  249.    with the version assumed by the caller.  msg is set to null if there is no
  250.    error message. inflateInit does not perform any decompression: this will be
  251.    done by inflate().
  252. */
  253. #ifdef MOZILLA_CLIENT
  254. PR_PUBLIC_API(extern int) inflate (z_streamp strm, int flush);
  255. #else
  256. extern int EXPORT inflate OF((z_streamp strm, int flush));
  257. #endif
  258. /*
  259.   Performs one or both of the 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_PARTIAL_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_PARTIAL_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.     inflate() returns Z_OK if some progress has been made (more input
  292.   processed or more output produced), Z_STREAM_END if the end of the
  293.   compressed data has been reached and all uncompressed output has been
  294.   produced, Z_NEED_DICT if a preset dictionary is needed at this point (see
  295.   inflateSetDictionary below), Z_DATA_ERROR if the input data was corrupted,
  296.   Z_STREAM_ERROR if the stream structure was inconsistent (for example if
  297.   next_in or next_out was NULL), Z_MEM_ERROR if there was not enough memory,
  298.   Z_BUF_ERROR if no progress is possible or if there was not enough room in
  299.   the output buffer when Z_FINISH is used. In the Z_DATA_ERROR case, the
  300.   application may then call inflateSync to look for a good compression block.
  301.   In the Z_NEED_DICT case, strm->adler is set to the Adler32 value of the
  302.   dictionary chosen by the compressor.
  303. */
  304. #ifdef MOZILLA_CLIENT
  305. PR_PUBLIC_API(extern int) inflateEnd (z_streamp strm);
  306. #else
  307. extern int EXPORT inflateEnd OF((z_streamp strm));
  308. #endif
  309. /*
  310.      All dynamically allocated data structures for this stream are freed.
  311.    This function discards any unprocessed input and does not flush any
  312.    pending output.
  313.      inflateEnd returns Z_OK if success, Z_STREAM_ERROR if the stream state
  314.    was inconsistent. In the error case, msg may be set but then points to a
  315.    static string (which must not be deallocated).
  316. */
  317.                         /* Advanced functions */
  318. /*
  319.     The following functions are needed only in some special applications.
  320. */
  321. /*   
  322. extern int EXPORT deflateInit2 OF((z_streamp strm,
  323.                                    int  level,
  324.                                    int  method,
  325.                                    int  windowBits,
  326.                                    int  memLevel,
  327.                                    int  strategy));
  328.      This is another version of deflateInit with more compression options. The
  329.    fields next_in, zalloc, zfree and opaque must be initialized before by
  330.    the caller.
  331.      The method parameter is the compression method. It must be Z_DEFLATED in
  332.    this version of the library. (Method 9 will allow a 64K history buffer and
  333.    partial block flushes.)
  334.      The windowBits parameter is the base two logarithm of the window size
  335.    (the size of the history buffer).  It should be in the range 8..15 for this
  336.    version of the library (the value 16 will be allowed for method 9). Larger
  337.    values of this parameter result in better compression at the expense of
  338.    memory usage. The default value is 15 if deflateInit is used instead.
  339.      The memLevel parameter specifies how much memory should be allocated
  340.    for the internal compression state. memLevel=1 uses minimum memory but
  341.    is slow and reduces compression ratio; memLevel=9 uses maximum memory
  342.    for optimal speed. The default value is 8. See zconf.h for total memory
  343.    usage as a function of windowBits and memLevel.
  344.      The strategy parameter is used to tune the compression algorithm. Use the
  345.    value Z_DEFAULT_STRATEGY for normal data, Z_FILTERED for data produced by a
  346.    filter (or predictor), or Z_HUFFMAN_ONLY to force Huffman encoding only (no
  347.    string match).  Filtered data consists mostly of small values with a
  348.    somewhat random distribution. In this case, the compression algorithm is
  349.    tuned to compress them better. The effect of Z_FILTERED is to force more
  350.    Huffman coding and less string matching; it is somewhat intermediate
  351.    between Z_DEFAULT and Z_HUFFMAN_ONLY. The strategy parameter only affects
  352.    the compression ratio but not the correctness of the compressed output even
  353.    if it is not set appropriately.
  354.      If next_in is not null, the library will use this buffer to hold also
  355.    some history information; the buffer must either hold the entire input
  356.    data, or have at least 1<<(windowBits+1) bytes and be writable. If next_in
  357.    is null, the library will allocate its own history buffer (and leave next_in
  358.    null). next_out need not be provided here but must be provided by the
  359.    application for the next call of deflate().
  360.      If the history buffer is provided by the application, next_in must
  361.    must never be changed by the application since the compressor maintains
  362.    information inside this buffer from call to call; the application
  363.    must provide more input only by increasing avail_in. next_in is always
  364.    reset by the library in this case.
  365.       deflateInit2 returns Z_OK if success, Z_MEM_ERROR if there was
  366.    not enough memory, Z_STREAM_ERROR if a parameter is invalid (such as
  367.    an invalid method). msg is set to null if there is no error message.
  368.    deflateInit2 does not perform any compression: this will be done by
  369.    deflate(). 
  370. */
  371.                             
  372. #ifdef MOZILLA_CLIENT
  373. PR_PUBLIC_API(extern int) deflateSetDictionary (z_streamp strm,
  374.                                            const Bytef *dictionary,
  375.            uInt  dictLength);
  376. #else
  377. extern int EXPORT deflateSetDictionary OF((z_streamp strm,
  378.                                            const Bytef *dictionary,
  379.            uInt  dictLength));
  380. #endif
  381. /*
  382.      Initializes the compression dictionary (history buffer) from the given
  383.    byte sequence without producing any compressed output. This function must
  384.    be called immediately after deflateInit or deflateInit2, before any call
  385.    of deflate. The compressor and decompressor must use exactly the same
  386.    dictionary (see inflateSetDictionary).
  387.      The dictionary should consist of strings (byte sequences) that are likely
  388.    to be encountered later in the data to be compressed, with the most commonly
  389.    used strings preferably put towards the end of the dictionary. Using a
  390.    dictionary is most useful when the data to be compressed is short and
  391.    can be predicted with good accuracy; the data can then be compressed better
  392.    than with the default empty dictionary. In this version of the library,
  393.    only the last 32K bytes of the dictionary are used.
  394.      Upon return of this function, strm->adler is set to the Adler32 value
  395.    of the dictionary; the decompressor may later use this value to determine
  396.    which dictionary has been used by the compressor. (The Adler32 value
  397.    applies to the whole dictionary even if only a subset of the dictionary is
  398.    actually used by the compressor.)
  399.      deflateSetDictionary returns Z_OK if success, or Z_STREAM_ERROR if a
  400.    parameter is invalid (such as NULL dictionary) or the stream state
  401.    is inconsistent (for example if deflate has already been called for this
  402.    stream). deflateSetDictionary does not perform any compression: this will
  403.    be done by deflate(). 
  404. */
  405. #ifdef MOZILLA_CLIENT
  406. PR_PUBLIC_API(extern int) deflateCopy (z_streamp dest, z_streamp source);
  407. #else
  408. extern int EXPORT deflateCopy OF((z_streamp dest, z_streamp source));
  409. #endif
  410. /*
  411.      Sets the destination stream as a complete copy of the source stream.  If
  412.    the source stream is using an application-supplied history buffer, a new
  413.    buffer is allocated for the destination stream.  The compressed output
  414.    buffer is always application-supplied. It's the responsibility of the
  415.    application to provide the correct values of next_out and avail_out for the
  416.    next call of deflate.
  417.      This function can be useful when several compression strategies will be
  418.    tried, for example when there are several ways of pre-processing the input
  419.    data with a filter. The streams that will be discarded should then be freed
  420.    by calling deflateEnd.  Note that deflateCopy duplicates the internal
  421.    compression state which can be quite large, so this strategy is slow and
  422.    can consume lots of memory.
  423.      deflateCopy returns Z_OK if success, Z_MEM_ERROR if there was not
  424.    enough memory, Z_STREAM_ERROR if the source stream state was inconsistent
  425.    (such as zalloc being NULL). msg is left unchanged in both source and
  426.    destination.
  427. */
  428. #ifdef MOZILLA_CLIENT
  429. PR_PUBLIC_API(extern int) deflateReset (z_streamp strm);
  430. #else
  431. extern int EXPORT deflateReset OF((z_streamp strm));
  432. #endif
  433. /*
  434.      This function is equivalent to deflateEnd followed by deflateInit,
  435.    but does not free and reallocate all the internal compression state.
  436.    The stream will keep the same compression level and any other attributes
  437.    that may have been set by deflateInit2.
  438.       deflateReset returns Z_OK if success, or Z_STREAM_ERROR if the source
  439.    stream state was inconsistent (such as zalloc or state being NULL).
  440. */
  441. #ifdef MOZILLA_CLIENT
  442. PR_PUBLIC_API(extern int) deflateParams (z_streamp strm, int level, int strategy);
  443. #else
  444. extern int EXPORT deflateParams OF((z_streamp strm, int level, int strategy));
  445. #endif
  446. /*
  447.      Dynamically update the compression level and compression strategy.
  448.    This can be used to switch between compression and straight copy of
  449.    the input data, or to switch to a different kind of input data requiring
  450.    a different strategy. If the compression level is changed, the input
  451.    available so far is compressed with the old level (and may be flushed);
  452.    the new level will take effect only at the next call of deflate().
  453.      Before the call of deflateParams, the stream state must be set as for
  454.    a call of deflate(), since the currently available input may have to
  455.    be compressed and flushed. In particular, strm->avail_out must be non-zero.
  456.      deflateParams returns Z_OK if success, Z_STREAM_ERROR if the source
  457.    stream state was inconsistent or if a parameter was invalid, Z_BUF_ERROR
  458.    if strm->avail_out was zero.
  459. */
  460. /*   
  461. extern int EXPORT inflateInit2 OF((z_streamp strm,
  462.                                    int  windowBits));
  463.      This is another version of inflateInit with more compression options. The
  464.    fields next_out, zalloc, zfree and opaque must be initialized before by
  465.    the caller.
  466.      The windowBits parameter is the base two logarithm of the maximum window
  467.    size (the size of the history buffer).  It should be in the range 8..15 for
  468.    this version of the library (the value 16 will be allowed soon). The
  469.    default value is 15 if inflateInit is used instead. If a compressed stream
  470.    with a larger window size is given as input, inflate() will return with
  471.    the error code Z_DATA_ERROR instead of trying to allocate a larger window.
  472.      If next_out is not null, the library will use this buffer for the history
  473.    buffer; the buffer must either be large enough to hold the entire output
  474.    data, or have at least 1<<windowBits bytes.  If next_out is null, the
  475.    library will allocate its own buffer (and leave next_out null). next_in
  476.    need not be provided here but must be provided by the application for the
  477.    next call of inflate().
  478.      If the history buffer is provided by the application, next_out must
  479.    never be changed by the application since the decompressor maintains
  480.    history information inside this buffer from call to call; the application
  481.    can only reset next_out to the beginning of the history buffer when
  482.    avail_out is zero and all output has been consumed.
  483.       inflateInit2 returns Z_OK if success, Z_MEM_ERROR if there was
  484.    not enough memory, Z_STREAM_ERROR if a parameter is invalid (such as
  485.    windowBits < 8). msg is set to null if there is no error message.
  486.    inflateInit2 does not perform any decompression: this will be done by
  487.    inflate().
  488. */
  489. #ifdef MOZILLA_CLIENT
  490. PR_PUBLIC_API(extern int) inflateSetDictionary (z_streamp strm,
  491.            const Bytef *dictionary,
  492.    uInt  dictLength);
  493. #else
  494. extern int EXPORT inflateSetDictionary OF((z_streamp strm,
  495.            const Bytef *dictionary,
  496.    uInt  dictLength));
  497. #endif
  498. /*
  499.      Initializes the decompression dictionary (history buffer) from the given
  500.    uncompressed byte sequence. This function must be called immediately after
  501.    a call of inflate if this call returned Z_NEED_DICT. The dictionary chosen
  502.    by the compressor can be determined from the Adler32 value returned by this
  503.    call of inflate. The compressor and decompressor must use exactly the same
  504.    dictionary (see deflateSetDictionary).
  505.      inflateSetDictionary returns Z_OK if success, Z_STREAM_ERROR if a
  506.    parameter is invalid (such as NULL dictionary) or the stream state is
  507.    inconsistent, Z_DATA_ERROR if the given dictionary doesn't match the
  508.    expected one (incorrect Adler32 value). inflateSetDictionary does not
  509.    perform any decompression: this will be done by subsequent calls of
  510.    inflate().
  511. */
  512. #ifdef MOZILLA_CLIENT
  513. PR_PUBLIC_API(extern int) inflateSync (z_streamp strm);
  514. #else
  515. extern int EXPORT inflateSync OF((z_streamp strm));
  516. #endif
  517. /* 
  518.     Skips invalid compressed data until the special marker (see deflate()
  519.   above) can be found, or until all available input is skipped. No output
  520.   is provided.
  521.     inflateSync returns Z_OK if the special marker has been found, Z_BUF_ERROR
  522.   if no more input was provided, Z_DATA_ERROR if no marker has been found,
  523.   or Z_STREAM_ERROR if the stream structure was inconsistent. In the success
  524.   case, the application may save the current current value of total_in which
  525.   indicates where valid compressed data was found. In the error case, the
  526.   application may repeatedly call inflateSync, providing more input each time,
  527.   until success or end of the input data.
  528. */
  529. #ifdef MOZILLA_CLIENT
  530. PR_PUBLIC_API(extern int) inflateReset (z_streamp strm);
  531. #else
  532. extern int EXPORT inflateReset OF((z_streamp strm));
  533. #endif
  534. /*
  535.      This function is equivalent to inflateEnd followed by inflateInit,
  536.    but does not free and reallocate all the internal decompression state.
  537.    The stream will keep attributes that may have been set by inflateInit2.
  538.       inflateReset returns Z_OK if success, or Z_STREAM_ERROR if the source
  539.    stream state was inconsistent (such as zalloc or state being NULL).
  540. */
  541.                         /* utility functions */
  542. /*
  543.      The following utility functions are implemented on top of the
  544.    basic stream-oriented functions. To simplify the interface, some
  545.    default options are assumed (compression level, window size,
  546.    standard memory allocation functions). The source code of these
  547.    utility functions can easily be modified if you need special options.
  548. */
  549. #ifdef MOZILLA_CLIENT
  550. PR_PUBLIC_API(extern int) compress (Bytef *dest,   uLongf *destLen,
  551.        const Bytef *source, uLong sourceLen);
  552. #else
  553. extern int EXPORT compress OF((Bytef *dest,   uLongf *destLen,
  554.        const Bytef *source, uLong sourceLen));
  555. #endif
  556. /*
  557.      Compresses the source buffer into the destination buffer.  sourceLen is
  558.    the byte length of the source buffer. Upon entry, destLen is the total
  559.    size of the destination buffer, which must be at least 0.1% larger than
  560.    sourceLen plus 12 bytes. Upon exit, destLen is the actual size of the
  561.    compressed buffer.
  562.      This function can be used to compress a whole file at once if the
  563.    input file is mmap'ed.
  564.      compress returns Z_OK if success, Z_MEM_ERROR if there was not
  565.    enough memory, Z_BUF_ERROR if there was not enough room in the output
  566.    buffer.
  567. */
  568. #ifdef MOZILLA_CLIENT
  569. PR_PUBLIC_API(extern int) uncompress (Bytef *dest,   uLongf *destLen,
  570.  const Bytef *source, uLong sourceLen);
  571. #else
  572. extern int EXPORT uncompress OF((Bytef *dest,   uLongf *destLen,
  573.  const Bytef *source, uLong sourceLen));
  574. #endif
  575. /*
  576.      Decompresses the source buffer into the destination buffer.  sourceLen is
  577.    the byte length of the source buffer. Upon entry, destLen is the total
  578.    size of the destination buffer, which must be large enough to hold the
  579.    entire uncompressed data. (The size of the uncompressed data must have
  580.    been saved previously by the compressor and transmitted to the decompressor
  581.    by some mechanism outside the scope of this compression library.)
  582.    Upon exit, destLen is the actual size of the compressed buffer.
  583.      This function can be used to decompress a whole file at once if the
  584.    input file is mmap'ed.
  585.      uncompress returns Z_OK if success, Z_MEM_ERROR if there was not
  586.    enough memory, Z_BUF_ERROR if there was not enough room in the output
  587.    buffer, or Z_DATA_ERROR if the input data was corrupted.
  588. */
  589. typedef voidp gzFile;
  590. #ifdef MOZILLA_CLIENT
  591. PR_PUBLIC_API(extern gzFile) gzopen  (const char *path, const char *mode);
  592. #else
  593. extern gzFile EXPORT gzopen  OF((const char *path, const char *mode));
  594. #endif
  595. /*
  596.      Opens a gzip (.gz) file for reading or writing. The mode parameter
  597.    is as in fopen ("rb" or "wb") but can also include a compression level
  598.    ("wb9").  gzopen can be used to read a file which is not in gzip format;
  599.    in this case gzread will directly read from the file without decompression.
  600.      gzopen returns NULL if the file could not be opened or if there was
  601.    insufficient memory to allocate the (de)compression state; errno
  602.    can be checked to distinguish the two cases (if errno is zero, the
  603.    zlib error is Z_MEM_ERROR).
  604. */
  605. #ifdef MOZILLA_CLIENT
  606. PR_PUBLIC_API(extern gzFile) gzdopen  (int fd, const char *mode);
  607. #else
  608. extern gzFile EXPORT gzdopen  OF((int fd, const char *mode));
  609. #endif
  610. /*
  611.      gzdopen() associates a gzFile with the file descriptor fd.  File
  612.    descriptors are obtained from calls like open, dup, creat, pipe or
  613.    fileno (in the file has been previously opened with fopen).
  614.    The mode parameter is as in gzopen.
  615.      The next call of gzclose on the returned gzFile will also close the
  616.    file descriptor fd, just like fclose(fdopen(fd), mode) closes the file
  617.    descriptor fd. If you want to keep fd open, use gzdopen(dup(fd), mode).
  618.      gzdopen returns NULL if there was insufficient memory to allocate
  619.    the (de)compression state.
  620. */
  621. #ifdef MOZILLA_CLIENT
  622. PR_PUBLIC_API(extern int)    gzread  (gzFile file, voidp buf, unsigned len);
  623. #else
  624. extern int EXPORT    gzread  OF((gzFile file, voidp buf, unsigned len));
  625. #endif
  626. /*
  627.      Reads the given number of uncompressed bytes from the compressed file.
  628.    If the input file was not in gzip format, gzread copies the given number
  629.    of bytes into the buffer.
  630.      gzread returns the number of uncompressed bytes actually read (0 for
  631.    end of file, -1 for error). */
  632. #ifdef MOZILLA_CLIENT
  633. PR_PUBLIC_API(extern int)    gzwrite (gzFile file, const voidp buf, unsigned len);
  634. #else
  635. extern int EXPORT    gzwrite OF((gzFile file, const voidp buf, unsigned len));
  636. #endif
  637. /*
  638.      Writes the given number of uncompressed bytes into the compressed file.
  639.    gzwrite returns the number of uncompressed bytes actually written
  640.    (0 in case of error).
  641. */
  642. #ifdef MOZILLA_CLIENT
  643. PR_PUBLIC_API(extern int)    gzflush (gzFile file, int flush);
  644. #else
  645. extern int EXPORT    gzflush OF((gzFile file, int flush));
  646. #endif
  647. /*
  648.      Flushes all pending output into the compressed file. The parameter
  649.    flush is as in the deflate() function. The return value is the zlib
  650.    error number (see function gzerror below). gzflush returns Z_OK if
  651.    the flush parameter is Z_FINISH and all output could be flushed.
  652.      gzflush should be called only when strictly necessary because it can
  653.    degrade compression.
  654. */
  655. #ifdef MOZILLA_CLIENT
  656. PR_PUBLIC_API(extern int)    gzclose (gzFile file);
  657. #else
  658. extern int EXPORT    gzclose OF((gzFile file));
  659. #endif
  660. /*
  661.      Flushes all pending output if necessary, closes the compressed file
  662.    and deallocates all the (de)compression state. The return value is the zlib
  663.    error number (see function gzerror below).
  664. */
  665. #ifdef MOZILLA_CLIENT
  666. PR_PUBLIC_API(extern const char *) gzerror (gzFile file, int *errnum);
  667. #else
  668. extern const char * EXPORT gzerror OF((gzFile file, int *errnum));
  669. #endif
  670. /*
  671.      Returns the error message for the last error which occurred on the
  672.    given compressed file. errnum is set to zlib error number. If an
  673.    error occurred in the file system and not in the compression library,
  674.    errnum is set to Z_ERRNO and the application may consult errno
  675.    to get the exact error code.
  676. */
  677.                         /* checksum functions */
  678. /*
  679.      These functions are not related to compression but are exported
  680.    anyway because they might be useful in applications using the
  681.    compression library.
  682. */
  683. #ifdef MOZILLA_CLIENT
  684. PR_PUBLIC_API(extern uLong) adler32 (uLong adler, const Bytef *buf, uInt len);
  685. #else
  686. extern uLong EXPORT adler32 OF((uLong adler, const Bytef *buf, uInt len));
  687. #endif
  688. /*
  689.      Update a running Adler-32 checksum with the bytes buf[0..len-1] and
  690.    return the updated checksum. If buf is NULL, this function returns
  691.    the required initial value for the checksum.
  692.    An Adler-32 checksum is almost as reliable as a CRC32 but can be computed
  693.    much faster. Usage example:
  694.      uLong adler = adler32(0L, Z_NULL, 0);
  695.      while (read_buffer(buffer, length) != EOF) {
  696.        adler = adler32(adler, buffer, length);
  697.      }
  698.      if (adler != original_adler) error();
  699. */
  700. #ifdef MOZILLA_CLIENT
  701. PR_PUBLIC_API(extern uLong) crc32   (uLong crc, const Bytef *buf, uInt len);
  702. #else
  703. extern uLong EXPORT crc32   OF((uLong crc, const Bytef *buf, uInt len));
  704. #endif
  705. /*
  706.      Update a running crc with the bytes buf[0..len-1] and return the updated
  707.    crc. If buf is NULL, this function returns the required initial value
  708.    for the crc. Pre- and post-conditioning (one's complement) is performed
  709.    within this function so it shouldn't be done by the application.
  710.    Usage example:
  711.      uLong crc = crc32(0L, Z_NULL, 0);
  712.      while (read_buffer(buffer, length) != EOF) {
  713.        crc = crc32(crc, buffer, length);
  714.      }
  715.      if (crc != original_crc) error();
  716. */
  717.                         /* various hacks, don't look :) */
  718. /* deflateInit and inflateInit are macros to allow checking the zlib version
  719.  * and the compiler's view of z_stream:
  720.  */
  721. #ifdef MOZILLA_CLIENT
  722. PR_PUBLIC_API(extern int) deflateInit_ (z_streamp strm, int level, const char *version, 
  723. int stream_size);
  724. PR_PUBLIC_API(extern int) inflateInit_ (z_streamp strm, const char *version, 
  725. int stream_size);
  726. PR_PUBLIC_API(extern int) deflateInit2_ (z_streamp strm, int  level, int  method, 
  727.  int windowBits, int memLevel, int strategy, 
  728.  const char *version, int stream_size);
  729. PR_PUBLIC_API(extern int) inflateInit2_ (z_streamp strm, int  windowBits, 
  730.  const char *version, int stream_size);
  731. #else
  732. extern int EXPORT deflateInit_ OF((z_streamp strm, int level, const char *version, 
  733.    int stream_size));
  734. extern int EXPORT inflateInit_ OF((z_streamp strm, const char *version, 
  735.    int stream_size));
  736. extern int EXPORT deflateInit2_ OF((z_streamp strm, int  level, int  method, 
  737.     int windowBits, int memLevel, int strategy, 
  738.     const char *version, int stream_size));
  739. extern int EXPORT inflateInit2_ OF((z_streamp strm, int  windowBits, 
  740.     const char *version, int stream_size));
  741. #endif /* MOZILLA_CLIENT */
  742. #define deflateInit(strm, level) 
  743.         deflateInit_((strm), (level),       ZLIB_VERSION, sizeof(z_stream))
  744. #define inflateInit(strm) 
  745.         inflateInit_((strm),                ZLIB_VERSION, sizeof(z_stream))
  746. #define deflateInit2(strm, level, method, windowBits, memLevel, strategy) 
  747.         deflateInit2_((strm),(level),(method),(windowBits),(memLevel),
  748.       (strategy),           ZLIB_VERSION, sizeof(z_stream))
  749. #define inflateInit2(strm, windowBits) 
  750.         inflateInit2_((strm), (windowBits), ZLIB_VERSION, sizeof(z_stream))
  751. #if !defined(_Z_UTIL_H) && !defined(NO_DUMMY_DECL)
  752.     struct internal_state {int dummy;}; /* hack for buggy compilers */
  753. #endif
  754. uLongf *get_crc_table OF((void)); /* can be used by asm versions of crc32() */
  755. #ifdef __cplusplus
  756. }
  757. #endif
  758. #endif /* _ZLIB_H */