os/ossrv/compressionlibs/ziplib/test/oldezlib/inc/OldEZlib.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
/* zlib.h -- interface of the 'zlib' general purpose compression library
sl@0
     2
  version 1.1.3, July 9th, 1998
sl@0
     3
sl@0
     4
  Copyright (C) 1995-1998 Jean-loup Gailly and Mark Adler
sl@0
     5
sl@0
     6
  This software is provided 'as-is', without any express or implied
sl@0
     7
  warranty.  In no event will the authors be held liable for any damages
sl@0
     8
  arising from the use of this software.
sl@0
     9
sl@0
    10
  Permission is granted to anyone to use this software for any purpose,
sl@0
    11
  including commercial applications, and to alter it and redistribute it
sl@0
    12
  freely, subject to the following restrictions:
sl@0
    13
sl@0
    14
  1. The origin of this software must not be misrepresented; you must not
sl@0
    15
     claim that you wrote the original software. If you use this software
sl@0
    16
     in a product, an acknowledgment in the product documentation would be
sl@0
    17
     appreciated but is not required.
sl@0
    18
  2. Altered source versions must be plainly marked as such, and must not be
sl@0
    19
     misrepresented as being the original software.
sl@0
    20
  3. This notice may not be removed or altered from any source distribution.
sl@0
    21
sl@0
    22
  Jean-loup Gailly        Mark Adler
sl@0
    23
  jloup@gzip.org          madler@alumni.caltech.edu
sl@0
    24
sl@0
    25
sl@0
    26
  The data format used by the zlib library is described by RFCs (Request for
sl@0
    27
  Comments) 1950 to 1952 in the files ftp://ds.internic.net/rfc/rfc1950.txt
sl@0
    28
  (zlib format), rfc1951.txt (deflate format) and rfc1952.txt (gzip format).
sl@0
    29
*/
sl@0
    30
sl@0
    31
/*
sl@0
    32
This is an altered version of the zlib library designed to run on EPOC 
sl@0
    33
Symbian Markr 5/11/99
sl@0
    34
*/
sl@0
    35
sl@0
    36
#ifndef _ZLIB_H
sl@0
    37
#define _ZLIB_H
sl@0
    38
sl@0
    39
#ifdef __cplusplus
sl@0
    40
extern "C" {
sl@0
    41
#endif
sl@0
    42
sl@0
    43
#include "OldEZConf.h"
sl@0
    44
sl@0
    45
#define ZLIB_VERSION "1.1.3"
sl@0
    46
sl@0
    47
/* 
sl@0
    48
     The 'zlib' compression library provides in-memory compression and
sl@0
    49
  decompression functions, including integrity checks of the uncompressed
sl@0
    50
  data.  This version of the library supports only one compression method
sl@0
    51
  (deflation) but other algorithms will be added later and will have the same
sl@0
    52
  stream interface.
sl@0
    53
sl@0
    54
     Compression can be done in a single step if the buffers are large
sl@0
    55
  enough (for example if an input file is mmap'ed), or can be done by
sl@0
    56
  repeated calls of the compression function.  In the latter case, the
sl@0
    57
  application must provide more input and/or consume the output
sl@0
    58
  (providing more output space) before each call.
sl@0
    59
sl@0
    60
     The library also supports reading and writing files in gzip (.gz) format
sl@0
    61
  with an interface similar to that of stdio.
sl@0
    62
sl@0
    63
     The library does not install any signal handler. The decoder checks
sl@0
    64
  the consistency of the compressed data, so the library should never
sl@0
    65
  crash even in case of corrupted input.
sl@0
    66
*/
sl@0
    67
sl@0
    68
typedef voidpf (*alloc_func) OF((voidpf opaque, uInt items, uInt size));
sl@0
    69
typedef void   (*free_func)  OF((voidpf opaque, voidpf address));
sl@0
    70
sl@0
    71
struct internal_state;
sl@0
    72
sl@0
    73
/**
sl@0
    74
Encapsulates a zip stream
sl@0
    75
sl@0
    76
@publishedAll
sl@0
    77
@released
sl@0
    78
*/
sl@0
    79
typedef struct z_stream_s {
sl@0
    80
	/** next input byte */
sl@0
    81
    Bytef    *next_in;
sl@0
    82
	/** number of bytes available at next_in */    
sl@0
    83
    uInt     avail_in;
sl@0
    84
	/** total nb of input bytes read so far */    
sl@0
    85
    uLong    total_in;
sl@0
    86
sl@0
    87
	/** next output byte should be put there */
sl@0
    88
    Bytef    *next_out;
sl@0
    89
	/** remaining free space at next_out */    
sl@0
    90
    uInt     avail_out;
sl@0
    91
    /** total nb of bytes output so far */
sl@0
    92
    uLong    total_out;
sl@0
    93
sl@0
    94
	/** last error message, NULL if no error */
sl@0
    95
    char     *msg;
sl@0
    96
	/* not visible by applications */    
sl@0
    97
    struct internal_state FAR *state;
sl@0
    98
sl@0
    99
	/** used to allocate the internal state */
sl@0
   100
    alloc_func zalloc;
sl@0
   101
	/** used to free the internal state */    
sl@0
   102
    free_func  zfree;
sl@0
   103
	/** private data object passed to zalloc and zfree */    
sl@0
   104
    voidpf     opaque;
sl@0
   105
sl@0
   106
	/** best guess about the data type: ascii or binary */
sl@0
   107
    int     data_type;
sl@0
   108
	/** adler32 value of the uncompressed data */    
sl@0
   109
    uLong   adler;
sl@0
   110
	/** reserved for future use */    
sl@0
   111
    uLong   reserved;
sl@0
   112
} z_stream;
sl@0
   113
sl@0
   114
typedef z_stream FAR *z_streamp;
sl@0
   115
sl@0
   116
/*
sl@0
   117
   The application must update next_in and avail_in when avail_in has
sl@0
   118
   dropped to zero. It must update next_out and avail_out when avail_out
sl@0
   119
   has dropped to zero. The application must initialize zalloc, zfree and
sl@0
   120
   opaque before calling the init function. All other fields are set by the
sl@0
   121
   compression library and must not be updated by the application.
sl@0
   122
sl@0
   123
   The opaque value provided by the application will be passed as the first
sl@0
   124
   parameter for calls of zalloc and zfree. This can be useful for custom
sl@0
   125
   memory management. The compression library attaches no meaning to the
sl@0
   126
   opaque value.
sl@0
   127
sl@0
   128
   zalloc must return Z_NULL if there is not enough memory for the object.
sl@0
   129
   If zlib is used in a multi-threaded application, zalloc and zfree must be
sl@0
   130
   thread safe.
sl@0
   131
sl@0
   132
   On 16-bit systems, the functions zalloc and zfree must be able to allocate
sl@0
   133
   exactly 65536 bytes, but will not be required to allocate more than this
sl@0
   134
   if the symbol MAXSEG_64K is defined (see zconf.h). WARNING: On MSDOS,
sl@0
   135
   pointers returned by zalloc for objects of exactly 65536 bytes *must*
sl@0
   136
   have their offset normalized to zero. The default allocation function
sl@0
   137
   provided by this library ensures this (see zutil.c). To reduce memory
sl@0
   138
   requirements and avoid any allocation of 64K objects, at the expense of
sl@0
   139
   compression ratio, compile the library with -DMAX_WBITS=14 (see zconf.h).
sl@0
   140
sl@0
   141
   The fields total_in and total_out can be used for statistics or
sl@0
   142
   progress reports. After compression, total_in holds the total size of
sl@0
   143
   the uncompressed data and may be saved for use in the decompressor
sl@0
   144
   (particularly if the decompressor wants to decompress everything in
sl@0
   145
   a single step).
sl@0
   146
*/
sl@0
   147
sl@0
   148
                        /* constants */
sl@0
   149
sl@0
   150
#define Z_NO_FLUSH      0
sl@0
   151
#define Z_PARTIAL_FLUSH 1 /* will be removed, use Z_SYNC_FLUSH instead */
sl@0
   152
#define Z_SYNC_FLUSH    2
sl@0
   153
#define Z_FULL_FLUSH    3
sl@0
   154
#define Z_FINISH        4
sl@0
   155
/* Allowed flush values; see deflate() below for details */
sl@0
   156
sl@0
   157
#define Z_OK            0
sl@0
   158
#define Z_STREAM_END    1
sl@0
   159
#define Z_NEED_DICT     2
sl@0
   160
#define Z_ERRNO        (-1)
sl@0
   161
#define Z_STREAM_ERROR (-2)
sl@0
   162
#define Z_DATA_ERROR   (-3)
sl@0
   163
#define Z_MEM_ERROR    (-4)
sl@0
   164
#define Z_BUF_ERROR    (-5)
sl@0
   165
#define Z_VERSION_ERROR (-6)
sl@0
   166
/* Return codes for the compression/decompression functions. Negative
sl@0
   167
 * values are errors, positive values are used for special but normal events.
sl@0
   168
 */
sl@0
   169
sl@0
   170
#define Z_NO_COMPRESSION         0
sl@0
   171
#define Z_BEST_SPEED             1
sl@0
   172
#define Z_BEST_COMPRESSION       9
sl@0
   173
#define Z_DEFAULT_COMPRESSION  (-1)
sl@0
   174
/* compression levels */
sl@0
   175
sl@0
   176
#define Z_FILTERED            1
sl@0
   177
#define Z_HUFFMAN_ONLY        2
sl@0
   178
#define Z_DEFAULT_STRATEGY    0
sl@0
   179
/* compression strategy; see deflateInit2() below for details */
sl@0
   180
sl@0
   181
#define Z_BINARY   0
sl@0
   182
#define Z_ASCII    1
sl@0
   183
#define Z_UNKNOWN  2
sl@0
   184
/* Possible values of the data_type field */
sl@0
   185
sl@0
   186
#define Z_DEFLATED   8
sl@0
   187
/* The deflate compression method (the only one supported in this version) */
sl@0
   188
sl@0
   189
#define Z_NULL  0  /* for initializing zalloc, zfree, opaque */
sl@0
   190
sl@0
   191
#define zlib_version zlibVersion()
sl@0
   192
/* for compatibility with versions < 1.0.2 */
sl@0
   193
sl@0
   194
                        /* basic functions */
sl@0
   195
sl@0
   196
ZEXTERN const char * ZEXPORT zlibVersion OF((void));
sl@0
   197
/* The application can compare zlibVersion and ZLIB_VERSION for consistency.
sl@0
   198
   If the first character differs, the library code actually used is
sl@0
   199
   not compatible with the zlib.h header file used by the application.
sl@0
   200
   This check is automatically made by deflateInit and inflateInit.
sl@0
   201
 */
sl@0
   202
sl@0
   203
/* 
sl@0
   204
ZEXTERN int ZEXPORT deflateInit OF((z_streamp strm, int level));
sl@0
   205
sl@0
   206
     Initializes the internal stream state for compression. The fields
sl@0
   207
   zalloc, zfree and opaque must be initialized before by the caller.
sl@0
   208
   If zalloc and zfree are set to Z_NULL, deflateInit updates them to
sl@0
   209
   use default allocation functions.
sl@0
   210
sl@0
   211
     The compression level must be Z_DEFAULT_COMPRESSION, or between 0 and 9:
sl@0
   212
   1 gives best speed, 9 gives best compression, 0 gives no compression at
sl@0
   213
   all (the input data is simply copied a block at a time).
sl@0
   214
   Z_DEFAULT_COMPRESSION requests a default compromise between speed and
sl@0
   215
   compression (currently equivalent to level 6).
sl@0
   216
sl@0
   217
     deflateInit returns Z_OK if success, Z_MEM_ERROR if there was not
sl@0
   218
   enough memory, Z_STREAM_ERROR if level is not a valid compression level,
sl@0
   219
   Z_VERSION_ERROR if the zlib library version (zlib_version) is incompatible
sl@0
   220
   with the version assumed by the caller (ZLIB_VERSION).
sl@0
   221
   msg is set to null if there is no error message.  deflateInit does not
sl@0
   222
   perform any compression: this will be done by deflate().
sl@0
   223
*/
sl@0
   224
sl@0
   225
sl@0
   226
ZEXTERN int ZEXPORT deflate OF((z_streamp strm, int flush));
sl@0
   227
/*
sl@0
   228
    deflate compresses as much data as possible, and stops when the input
sl@0
   229
  buffer becomes empty or the output buffer becomes full. It may introduce some
sl@0
   230
  output latency (reading input without producing any output) except when
sl@0
   231
  forced to flush.
sl@0
   232
sl@0
   233
    The detailed semantics are as follows. deflate performs one or both of the
sl@0
   234
  following actions:
sl@0
   235
sl@0
   236
  - Compress more input starting at next_in and update next_in and avail_in
sl@0
   237
    accordingly. If not all input can be processed (because there is not
sl@0
   238
    enough room in the output buffer), next_in and avail_in are updated and
sl@0
   239
    processing will resume at this point for the next call of deflate().
sl@0
   240
sl@0
   241
  - Provide more output starting at next_out and update next_out and avail_out
sl@0
   242
    accordingly. This action is forced if the parameter flush is non zero.
sl@0
   243
    Forcing flush frequently degrades the compression ratio, so this parameter
sl@0
   244
    should be set only when necessary (in interactive applications).
sl@0
   245
    Some output may be provided even if flush is not set.
sl@0
   246
sl@0
   247
  Before the call of deflate(), the application should ensure that at least
sl@0
   248
  one of the actions is possible, by providing more input and/or consuming
sl@0
   249
  more output, and updating avail_in or avail_out accordingly; avail_out
sl@0
   250
  should never be zero before the call. The application can consume the
sl@0
   251
  compressed output when it wants, for example when the output buffer is full
sl@0
   252
  (avail_out == 0), or after each call of deflate(). If deflate returns Z_OK
sl@0
   253
  and with zero avail_out, it must be called again after making room in the
sl@0
   254
  output buffer because there might be more output pending.
sl@0
   255
sl@0
   256
    If the parameter flush is set to Z_SYNC_FLUSH, all pending output is
sl@0
   257
  flushed to the output buffer and the output is aligned on a byte boundary, so
sl@0
   258
  that the decompressor can get all input data available so far. (In particular
sl@0
   259
  avail_in is zero after the call if enough output space has been provided
sl@0
   260
  before the call.)  Flushing may degrade compression for some compression
sl@0
   261
  algorithms and so it should be used only when necessary.
sl@0
   262
sl@0
   263
    If flush is set to Z_FULL_FLUSH, all output is flushed as with
sl@0
   264
  Z_SYNC_FLUSH, and the compression state is reset so that decompression can
sl@0
   265
  restart from this point if previous compressed data has been damaged or if
sl@0
   266
  random access is desired. Using Z_FULL_FLUSH too often can seriously degrade
sl@0
   267
  the compression.
sl@0
   268
sl@0
   269
    If deflate returns with avail_out == 0, this function must be called again
sl@0
   270
  with the same value of the flush parameter and more output space (updated
sl@0
   271
  avail_out), until the flush is complete (deflate returns with non-zero
sl@0
   272
  avail_out).
sl@0
   273
sl@0
   274
    If the parameter flush is set to Z_FINISH, pending input is processed,
sl@0
   275
  pending output is flushed and deflate returns with Z_STREAM_END if there
sl@0
   276
  was enough output space; if deflate returns with Z_OK, this function must be
sl@0
   277
  called again with Z_FINISH and more output space (updated avail_out) but no
sl@0
   278
  more input data, until it returns with Z_STREAM_END or an error. After
sl@0
   279
  deflate has returned Z_STREAM_END, the only possible operations on the
sl@0
   280
  stream are deflateReset or deflateEnd.
sl@0
   281
  
sl@0
   282
    Z_FINISH can be used immediately after deflateInit if all the compression
sl@0
   283
  is to be done in a single step. In this case, avail_out must be at least
sl@0
   284
  0.1% larger than avail_in plus 12 bytes.  If deflate does not return
sl@0
   285
  Z_STREAM_END, then it must be called again as described above.
sl@0
   286
sl@0
   287
    deflate() sets strm->adler to the adler32 checksum of all input read
sl@0
   288
  so far (that is, total_in bytes).
sl@0
   289
sl@0
   290
    deflate() may update data_type if it can make a good guess about
sl@0
   291
  the input data type (Z_ASCII or Z_BINARY). In doubt, the data is considered
sl@0
   292
  binary. This field is only for information purposes and does not affect
sl@0
   293
  the compression algorithm in any manner.
sl@0
   294
sl@0
   295
    deflate() returns Z_OK if some progress has been made (more input
sl@0
   296
  processed or more output produced), Z_STREAM_END if all input has been
sl@0
   297
  consumed and all output has been produced (only when flush is set to
sl@0
   298
  Z_FINISH), Z_STREAM_ERROR if the stream state was inconsistent (for example
sl@0
   299
  if next_in or next_out was NULL), Z_BUF_ERROR if no progress is possible
sl@0
   300
  (for example avail_in or avail_out was zero).
sl@0
   301
*/
sl@0
   302
sl@0
   303
sl@0
   304
ZEXTERN int ZEXPORT deflateEnd OF((z_streamp strm));
sl@0
   305
/*
sl@0
   306
     All dynamically allocated data structures for this stream are freed.
sl@0
   307
   This function discards any unprocessed input and does not flush any
sl@0
   308
   pending output.
sl@0
   309
sl@0
   310
     deflateEnd returns Z_OK if success, Z_STREAM_ERROR if the
sl@0
   311
   stream state was inconsistent, Z_DATA_ERROR if the stream was freed
sl@0
   312
   prematurely (some input or output was discarded). In the error case,
sl@0
   313
   msg may be set but then points to a static string (which must not be
sl@0
   314
   deallocated).
sl@0
   315
*/
sl@0
   316
sl@0
   317
sl@0
   318
/* 
sl@0
   319
ZEXTERN int ZEXPORT inflateInit OF((z_streamp strm));
sl@0
   320
sl@0
   321
     Initializes the internal stream state for decompression. The fields
sl@0
   322
   next_in, avail_in, zalloc, zfree and opaque must be initialized before by
sl@0
   323
   the caller. If next_in is not Z_NULL and avail_in is large enough (the exact
sl@0
   324
   value depends on the compression method), inflateInit determines the
sl@0
   325
   compression method from the zlib header and allocates all data structures
sl@0
   326
   accordingly; otherwise the allocation will be deferred to the first call of
sl@0
   327
   inflate.  If zalloc and zfree are set to Z_NULL, inflateInit updates them to
sl@0
   328
   use default allocation functions.
sl@0
   329
sl@0
   330
     inflateInit returns Z_OK if success, Z_MEM_ERROR if there was not enough
sl@0
   331
   memory, Z_VERSION_ERROR if the zlib library version is incompatible with the
sl@0
   332
   version assumed by the caller.  msg is set to null if there is no error
sl@0
   333
   message. inflateInit does not perform any decompression apart from reading
sl@0
   334
   the zlib header if present: this will be done by inflate().  (So next_in and
sl@0
   335
   avail_in may be modified, but next_out and avail_out are unchanged.)
sl@0
   336
*/
sl@0
   337
sl@0
   338
sl@0
   339
ZEXTERN int ZEXPORT inflate OF((z_streamp strm, int flush));
sl@0
   340
/*
sl@0
   341
    inflate decompresses as much data as possible, and stops when the input
sl@0
   342
  buffer becomes empty or the output buffer becomes full. It may some
sl@0
   343
  introduce some output latency (reading input without producing any output)
sl@0
   344
  except when forced to flush.
sl@0
   345
sl@0
   346
  The detailed semantics are as follows. inflate performs one or both of the
sl@0
   347
  following actions:
sl@0
   348
sl@0
   349
  - Decompress more input starting at next_in and update next_in and avail_in
sl@0
   350
    accordingly. If not all input can be processed (because there is not
sl@0
   351
    enough room in the output buffer), next_in is updated and processing
sl@0
   352
    will resume at this point for the next call of inflate().
sl@0
   353
sl@0
   354
  - Provide more output starting at next_out and update next_out and avail_out
sl@0
   355
    accordingly.  inflate() provides as much output as possible, until there
sl@0
   356
    is no more input data or no more space in the output buffer (see below
sl@0
   357
    about the flush parameter).
sl@0
   358
sl@0
   359
  Before the call of inflate(), the application should ensure that at least
sl@0
   360
  one of the actions is possible, by providing more input and/or consuming
sl@0
   361
  more output, and updating the next_* and avail_* values accordingly.
sl@0
   362
  The application can consume the uncompressed output when it wants, for
sl@0
   363
  example when the output buffer is full (avail_out == 0), or after each
sl@0
   364
  call of inflate(). If inflate returns Z_OK and with zero avail_out, it
sl@0
   365
  must be called again after making room in the output buffer because there
sl@0
   366
  might be more output pending.
sl@0
   367
sl@0
   368
    If the parameter flush is set to Z_SYNC_FLUSH, inflate flushes as much
sl@0
   369
  output as possible to the output buffer. The flushing behavior of inflate is
sl@0
   370
  not specified for values of the flush parameter other than Z_SYNC_FLUSH
sl@0
   371
  and Z_FINISH, but the current implementation actually flushes as much output
sl@0
   372
  as possible anyway.
sl@0
   373
sl@0
   374
    inflate() should normally be called until it returns Z_STREAM_END or an
sl@0
   375
  error. However if all decompression is to be performed in a single step
sl@0
   376
  (a single call of inflate), the parameter flush should be set to
sl@0
   377
  Z_FINISH. In this case all pending input is processed and all pending
sl@0
   378
  output is flushed; avail_out must be large enough to hold all the
sl@0
   379
  uncompressed data. (The size of the uncompressed data may have been saved
sl@0
   380
  by the compressor for this purpose.) The next operation on this stream must
sl@0
   381
  be inflateEnd to deallocate the decompression state. The use of Z_FINISH
sl@0
   382
  is never required, but can be used to inform inflate that a faster routine
sl@0
   383
  may be used for the single inflate() call.
sl@0
   384
sl@0
   385
     If a preset dictionary is needed at this point (see inflateSetDictionary
sl@0
   386
  below), inflate sets strm-adler to the adler32 checksum of the
sl@0
   387
  dictionary chosen by the compressor and returns Z_NEED_DICT; otherwise 
sl@0
   388
  it sets strm->adler to the adler32 checksum of all output produced
sl@0
   389
  so far (that is, total_out bytes) and returns Z_OK, Z_STREAM_END or
sl@0
   390
  an error code as described below. At the end of the stream, inflate()
sl@0
   391
  checks that its computed adler32 checksum is equal to that saved by the
sl@0
   392
  compressor and returns Z_STREAM_END only if the checksum is correct.
sl@0
   393
sl@0
   394
    inflate() returns Z_OK if some progress has been made (more input processed
sl@0
   395
  or more output produced), Z_STREAM_END if the end of the compressed data has
sl@0
   396
  been reached and all uncompressed output has been produced, Z_NEED_DICT if a
sl@0
   397
  preset dictionary is needed at this point, Z_DATA_ERROR if the input data was
sl@0
   398
  corrupted (input stream not conforming to the zlib format or incorrect
sl@0
   399
  adler32 checksum), Z_STREAM_ERROR if the stream structure was inconsistent
sl@0
   400
  (for example if next_in or next_out was NULL), Z_MEM_ERROR if there was not
sl@0
   401
  enough memory, Z_BUF_ERROR if no progress is possible or if there was not
sl@0
   402
  enough room in the output buffer when Z_FINISH is used. In the Z_DATA_ERROR
sl@0
   403
  case, the application may then call inflateSync to look for a good
sl@0
   404
  compression block.
sl@0
   405
*/
sl@0
   406
sl@0
   407
sl@0
   408
ZEXTERN int ZEXPORT inflateEnd OF((z_streamp strm));
sl@0
   409
/*
sl@0
   410
     All dynamically allocated data structures for this stream are freed.
sl@0
   411
   This function discards any unprocessed input and does not flush any
sl@0
   412
   pending output.
sl@0
   413
sl@0
   414
     inflateEnd returns Z_OK if success, Z_STREAM_ERROR if the stream state
sl@0
   415
   was inconsistent. In the error case, msg may be set but then points to a
sl@0
   416
   static string (which must not be deallocated).
sl@0
   417
*/
sl@0
   418
sl@0
   419
                        /* Advanced functions */
sl@0
   420
sl@0
   421
/*
sl@0
   422
    The following functions are needed only in some special applications.
sl@0
   423
*/
sl@0
   424
sl@0
   425
/*   
sl@0
   426
ZEXTERN int ZEXPORT deflateInit2 OF((z_streamp strm,
sl@0
   427
                                     int  level,
sl@0
   428
                                     int  method,
sl@0
   429
                                     int  windowBits,
sl@0
   430
                                     int  memLevel,
sl@0
   431
                                     int  strategy));
sl@0
   432
sl@0
   433
     This is another version of deflateInit with more compression options. The
sl@0
   434
   fields next_in, zalloc, zfree and opaque must be initialized before by
sl@0
   435
   the caller.
sl@0
   436
sl@0
   437
     The method parameter is the compression method. It must be Z_DEFLATED in
sl@0
   438
   this version of the library.
sl@0
   439
sl@0
   440
     The windowBits parameter is the base two logarithm of the window size
sl@0
   441
   (the size of the history buffer).  It should be in the range 8..15 for this
sl@0
   442
   version of the library. Larger values of this parameter result in better
sl@0
   443
   compression at the expense of memory usage. The default value is 15 if
sl@0
   444
   deflateInit is used instead.
sl@0
   445
sl@0
   446
     The memLevel parameter specifies how much memory should be allocated
sl@0
   447
   for the internal compression state. memLevel=1 uses minimum memory but
sl@0
   448
   is slow and reduces compression ratio; memLevel=9 uses maximum memory
sl@0
   449
   for optimal speed. The default value is 8. See zconf.h for total memory
sl@0
   450
   usage as a function of windowBits and memLevel.
sl@0
   451
sl@0
   452
     The strategy parameter is used to tune the compression algorithm. Use the
sl@0
   453
   value Z_DEFAULT_STRATEGY for normal data, Z_FILTERED for data produced by a
sl@0
   454
   filter (or predictor), or Z_HUFFMAN_ONLY to force Huffman encoding only (no
sl@0
   455
   string match).  Filtered data consists mostly of small values with a
sl@0
   456
   somewhat random distribution. In this case, the compression algorithm is
sl@0
   457
   tuned to compress them better. The effect of Z_FILTERED is to force more
sl@0
   458
   Huffman coding and less string matching; it is somewhat intermediate
sl@0
   459
   between Z_DEFAULT and Z_HUFFMAN_ONLY. The strategy parameter only affects
sl@0
   460
   the compression ratio but not the correctness of the compressed output even
sl@0
   461
   if it is not set appropriately.
sl@0
   462
sl@0
   463
      deflateInit2 returns Z_OK if success, Z_MEM_ERROR if there was not enough
sl@0
   464
   memory, Z_STREAM_ERROR if a parameter is invalid (such as an invalid
sl@0
   465
   method). msg is set to null if there is no error message.  deflateInit2 does
sl@0
   466
   not perform any compression: this will be done by deflate().
sl@0
   467
*/
sl@0
   468
                            
sl@0
   469
ZEXTERN int ZEXPORT deflateSetDictionary OF((z_streamp strm,
sl@0
   470
                                             const Bytef *dictionary,
sl@0
   471
                                             uInt  dictLength));
sl@0
   472
/*
sl@0
   473
     Initializes the compression dictionary from the given byte sequence
sl@0
   474
   without producing any compressed output. This function must be called
sl@0
   475
   immediately after deflateInit, deflateInit2 or deflateReset, before any
sl@0
   476
   call of deflate. The compressor and decompressor must use exactly the same
sl@0
   477
   dictionary (see inflateSetDictionary).
sl@0
   478
sl@0
   479
     The dictionary should consist of strings (byte sequences) that are likely
sl@0
   480
   to be encountered later in the data to be compressed, with the most commonly
sl@0
   481
   used strings preferably put towards the end of the dictionary. Using a
sl@0
   482
   dictionary is most useful when the data to be compressed is short and can be
sl@0
   483
   predicted with good accuracy; the data can then be compressed better than
sl@0
   484
   with the default empty dictionary.
sl@0
   485
sl@0
   486
     Depending on the size of the compression data structures selected by
sl@0
   487
   deflateInit or deflateInit2, a part of the dictionary may in effect be
sl@0
   488
   discarded, for example if the dictionary is larger than the window size in
sl@0
   489
   deflate or deflate2. Thus the strings most likely to be useful should be
sl@0
   490
   put at the end of the dictionary, not at the front.
sl@0
   491
sl@0
   492
     Upon return of this function, strm->adler is set to the Adler32 value
sl@0
   493
   of the dictionary; the decompressor may later use this value to determine
sl@0
   494
   which dictionary has been used by the compressor. (The Adler32 value
sl@0
   495
   applies to the whole dictionary even if only a subset of the dictionary is
sl@0
   496
   actually used by the compressor.)
sl@0
   497
sl@0
   498
     deflateSetDictionary returns Z_OK if success, or Z_STREAM_ERROR if a
sl@0
   499
   parameter is invalid (such as NULL dictionary) or the stream state is
sl@0
   500
   inconsistent (for example if deflate has already been called for this stream
sl@0
   501
   or if the compression method is bsort). deflateSetDictionary does not
sl@0
   502
   perform any compression: this will be done by deflate().
sl@0
   503
*/
sl@0
   504
sl@0
   505
ZEXTERN int ZEXPORT deflateCopy OF((z_streamp dest,
sl@0
   506
                                    z_streamp source));
sl@0
   507
/*
sl@0
   508
     Sets the destination stream as a complete copy of the source stream.
sl@0
   509
sl@0
   510
     This function can be useful when several compression strategies will be
sl@0
   511
   tried, for example when there are several ways of pre-processing the input
sl@0
   512
   data with a filter. The streams that will be discarded should then be freed
sl@0
   513
   by calling deflateEnd.  Note that deflateCopy duplicates the internal
sl@0
   514
   compression state which can be quite large, so this strategy is slow and
sl@0
   515
   can consume lots of memory.
sl@0
   516
sl@0
   517
     deflateCopy returns Z_OK if success, Z_MEM_ERROR if there was not
sl@0
   518
   enough memory, Z_STREAM_ERROR if the source stream state was inconsistent
sl@0
   519
   (such as zalloc being NULL). msg is left unchanged in both source and
sl@0
   520
   destination.
sl@0
   521
*/
sl@0
   522
sl@0
   523
ZEXTERN int ZEXPORT deflateReset OF((z_streamp strm));
sl@0
   524
/*
sl@0
   525
     This function is equivalent to deflateEnd followed by deflateInit,
sl@0
   526
   but does not free and reallocate all the internal compression state.
sl@0
   527
   The stream will keep the same compression level and any other attributes
sl@0
   528
   that may have been set by deflateInit2.
sl@0
   529
sl@0
   530
      deflateReset returns Z_OK if success, or Z_STREAM_ERROR if the source
sl@0
   531
   stream state was inconsistent (such as zalloc or state being NULL).
sl@0
   532
*/
sl@0
   533
sl@0
   534
ZEXTERN int ZEXPORT deflateParams OF((z_streamp strm,
sl@0
   535
				      int level,
sl@0
   536
				      int strategy));
sl@0
   537
/*
sl@0
   538
     Dynamically update the compression level and compression strategy.  The
sl@0
   539
   interpretation of level and strategy is as in deflateInit2.  This can be
sl@0
   540
   used to switch between compression and straight copy of the input data, or
sl@0
   541
   to switch to a different kind of input data requiring a different
sl@0
   542
   strategy. If the compression level is changed, the input available so far
sl@0
   543
   is compressed with the old level (and may be flushed); the new level will
sl@0
   544
   take effect only at the next call of deflate().
sl@0
   545
sl@0
   546
     Before the call of deflateParams, the stream state must be set as for
sl@0
   547
   a call of deflate(), since the currently available input may have to
sl@0
   548
   be compressed and flushed. In particular, strm->avail_out must be non-zero.
sl@0
   549
sl@0
   550
     deflateParams returns Z_OK if success, Z_STREAM_ERROR if the source
sl@0
   551
   stream state was inconsistent or if a parameter was invalid, Z_BUF_ERROR
sl@0
   552
   if strm->avail_out was zero.
sl@0
   553
*/
sl@0
   554
sl@0
   555
/*   
sl@0
   556
ZEXTERN int ZEXPORT inflateInit2 OF((z_streamp strm,
sl@0
   557
                                     int  windowBits));
sl@0
   558
sl@0
   559
     This is another version of inflateInit with an extra parameter. The
sl@0
   560
   fields next_in, avail_in, zalloc, zfree and opaque must be initialized
sl@0
   561
   before by the caller.
sl@0
   562
sl@0
   563
     The windowBits parameter is the base two logarithm of the maximum window
sl@0
   564
   size (the size of the history buffer).  It should be in the range 8..15 for
sl@0
   565
   this version of the library. The default value is 15 if inflateInit is used
sl@0
   566
   instead. If a compressed stream with a larger window size is given as
sl@0
   567
   input, inflate() will return with the error code Z_DATA_ERROR instead of
sl@0
   568
   trying to allocate a larger window.
sl@0
   569
sl@0
   570
      inflateInit2 returns Z_OK if success, Z_MEM_ERROR if there was not enough
sl@0
   571
   memory, Z_STREAM_ERROR if a parameter is invalid (such as a negative
sl@0
   572
   memLevel). msg is set to null if there is no error message.  inflateInit2
sl@0
   573
   does not perform any decompression apart from reading the zlib header if
sl@0
   574
   present: this will be done by inflate(). (So next_in and avail_in may be
sl@0
   575
   modified, but next_out and avail_out are unchanged.)
sl@0
   576
*/
sl@0
   577
sl@0
   578
ZEXTERN int ZEXPORT inflateSetDictionary OF((z_streamp strm,
sl@0
   579
                                             const Bytef *dictionary,
sl@0
   580
                                             uInt  dictLength));
sl@0
   581
/*
sl@0
   582
     Initializes the decompression dictionary from the given uncompressed byte
sl@0
   583
   sequence. This function must be called immediately after a call of inflate
sl@0
   584
   if this call returned Z_NEED_DICT. The dictionary chosen by the compressor
sl@0
   585
   can be determined from the Adler32 value returned by this call of
sl@0
   586
   inflate. The compressor and decompressor must use exactly the same
sl@0
   587
   dictionary (see deflateSetDictionary).
sl@0
   588
sl@0
   589
     inflateSetDictionary returns Z_OK if success, Z_STREAM_ERROR if a
sl@0
   590
   parameter is invalid (such as NULL dictionary) or the stream state is
sl@0
   591
   inconsistent, Z_DATA_ERROR if the given dictionary doesn't match the
sl@0
   592
   expected one (incorrect Adler32 value). inflateSetDictionary does not
sl@0
   593
   perform any decompression: this will be done by subsequent calls of
sl@0
   594
   inflate().
sl@0
   595
*/
sl@0
   596
sl@0
   597
ZEXTERN int ZEXPORT inflateSync OF((z_streamp strm));
sl@0
   598
/* 
sl@0
   599
    Skips invalid compressed data until a full flush point (see above the
sl@0
   600
  description of deflate with Z_FULL_FLUSH) can be found, or until all
sl@0
   601
  available input is skipped. No output is provided.
sl@0
   602
sl@0
   603
    inflateSync returns Z_OK if a full flush point has been found, Z_BUF_ERROR
sl@0
   604
  if no more input was provided, Z_DATA_ERROR if no flush point has been found,
sl@0
   605
  or Z_STREAM_ERROR if the stream structure was inconsistent. In the success
sl@0
   606
  case, the application may save the current current value of total_in which
sl@0
   607
  indicates where valid compressed data was found. In the error case, the
sl@0
   608
  application may repeatedly call inflateSync, providing more input each time,
sl@0
   609
  until success or end of the input data.
sl@0
   610
*/
sl@0
   611
sl@0
   612
ZEXTERN int ZEXPORT inflateReset OF((z_streamp strm));
sl@0
   613
/*
sl@0
   614
     This function is equivalent to inflateEnd followed by inflateInit,
sl@0
   615
   but does not free and reallocate all the internal decompression state.
sl@0
   616
   The stream will keep attributes that may have been set by inflateInit2.
sl@0
   617
sl@0
   618
      inflateReset returns Z_OK if success, or Z_STREAM_ERROR if the source
sl@0
   619
   stream state was inconsistent (such as zalloc or state being NULL).
sl@0
   620
*/
sl@0
   621
sl@0
   622
sl@0
   623
                        /* utility functions */
sl@0
   624
sl@0
   625
/*
sl@0
   626
     The following utility functions are implemented on top of the
sl@0
   627
   basic stream-oriented functions. To simplify the interface, some
sl@0
   628
   default options are assumed (compression level and memory usage,
sl@0
   629
   standard memory allocation functions). The source code of these
sl@0
   630
   utility functions can easily be modified if you need special options.
sl@0
   631
*/
sl@0
   632
sl@0
   633
ZEXTERN int ZEXPORT compress OF((Bytef *dest,   uLongf *destLen,
sl@0
   634
                                 const Bytef *source, uLong sourceLen));
sl@0
   635
/*
sl@0
   636
     Compresses the source buffer into the destination buffer.  sourceLen is
sl@0
   637
   the byte length of the source buffer. Upon entry, destLen is the total
sl@0
   638
   size of the destination buffer, which must be at least 0.1% larger than
sl@0
   639
   sourceLen plus 12 bytes. Upon exit, destLen is the actual size of the
sl@0
   640
   compressed buffer.
sl@0
   641
     This function can be used to compress a whole file at once if the
sl@0
   642
   input file is mmap'ed.
sl@0
   643
     compress returns Z_OK if success, Z_MEM_ERROR if there was not
sl@0
   644
   enough memory, Z_BUF_ERROR if there was not enough room in the output
sl@0
   645
   buffer.
sl@0
   646
*/
sl@0
   647
sl@0
   648
ZEXTERN int ZEXPORT compress2 OF((Bytef *dest,   uLongf *destLen,
sl@0
   649
                                  const Bytef *source, uLong sourceLen,
sl@0
   650
                                  int level));
sl@0
   651
/*
sl@0
   652
     Compresses the source buffer into the destination buffer. The level
sl@0
   653
   parameter has the same meaning as in deflateInit.  sourceLen is the byte
sl@0
   654
   length of the source buffer. Upon entry, destLen is the total size of the
sl@0
   655
   destination buffer, which must be at least 0.1% larger than sourceLen plus
sl@0
   656
   12 bytes. Upon exit, destLen is the actual size of the compressed buffer.
sl@0
   657
sl@0
   658
     compress2 returns Z_OK if success, Z_MEM_ERROR if there was not enough
sl@0
   659
   memory, Z_BUF_ERROR if there was not enough room in the output buffer,
sl@0
   660
   Z_STREAM_ERROR if the level parameter is invalid.
sl@0
   661
*/
sl@0
   662
sl@0
   663
ZEXTERN int ZEXPORT uncompress OF((Bytef *dest,   uLongf *destLen,
sl@0
   664
                                   const Bytef *source, uLong sourceLen));
sl@0
   665
/*
sl@0
   666
     Decompresses the source buffer into the destination buffer.  sourceLen is
sl@0
   667
   the byte length of the source buffer. Upon entry, destLen is the total
sl@0
   668
   size of the destination buffer, which must be large enough to hold the
sl@0
   669
   entire uncompressed data. (The size of the uncompressed data must have
sl@0
   670
   been saved previously by the compressor and transmitted to the decompressor
sl@0
   671
   by some mechanism outside the scope of this compression library.)
sl@0
   672
   Upon exit, destLen is the actual size of the compressed buffer.
sl@0
   673
     This function can be used to decompress a whole file at once if the
sl@0
   674
   input file is mmap'ed.
sl@0
   675
sl@0
   676
     uncompress returns Z_OK if success, Z_MEM_ERROR if there was not
sl@0
   677
   enough memory, Z_BUF_ERROR if there was not enough room in the output
sl@0
   678
   buffer, or Z_DATA_ERROR if the input data was corrupted.
sl@0
   679
*/
sl@0
   680
sl@0
   681
/*
sl@0
   682
typedef voidp gzFile;
sl@0
   683
sl@0
   684
ZEXTERN gzFile ZEXPORT gzopen  OF((const char *path, const char *mode));
sl@0
   685
*/
sl@0
   686
/*
sl@0
   687
     Opens a gzip (.gz) file for reading or writing. The mode parameter
sl@0
   688
   is as in fopen ("rb" or "wb") but can also include a compression level
sl@0
   689
   ("wb9") or a strategy: 'f' for filtered data as in "wb6f", 'h' for
sl@0
   690
   Huffman only compression as in "wb1h". (See the description
sl@0
   691
   of deflateInit2 for more information about the strategy parameter.)
sl@0
   692
sl@0
   693
     gzopen can be used to read a file which is not in gzip format; in this
sl@0
   694
   case gzread will directly read from the file without decompression.
sl@0
   695
sl@0
   696
     gzopen returns NULL if the file could not be opened or if there was
sl@0
   697
   insufficient memory to allocate the (de)compression state; errno
sl@0
   698
   can be checked to distinguish the two cases (if errno is zero, the
sl@0
   699
   zlib error is Z_MEM_ERROR).  */
sl@0
   700
sl@0
   701
//ZEXTERN gzFile ZEXPORT gzdopen  OF((int fd, const char *mode));
sl@0
   702
sl@0
   703
/*
sl@0
   704
     gzdopen() associates a gzFile with the file descriptor fd.  File
sl@0
   705
   descriptors are obtained from calls like open, dup, creat, pipe or
sl@0
   706
   fileno (in the file has been previously opened with fopen).
sl@0
   707
   The mode parameter is as in gzopen.
sl@0
   708
     The next call of gzclose on the returned gzFile will also close the
sl@0
   709
   file descriptor fd, just like fclose(fdopen(fd), mode) closes the file
sl@0
   710
   descriptor fd. If you want to keep fd open, use gzdopen(dup(fd), mode).
sl@0
   711
     gzdopen returns NULL if there was insufficient memory to allocate
sl@0
   712
   the (de)compression state.
sl@0
   713
*/
sl@0
   714
sl@0
   715
//ZEXTERN int ZEXPORT gzsetparams OF((gzFile file, int level, int strategy));
sl@0
   716
/*
sl@0
   717
     Dynamically update the compression level or strategy. See the description
sl@0
   718
   of deflateInit2 for the meaning of these parameters.
sl@0
   719
     gzsetparams returns Z_OK if success, or Z_STREAM_ERROR if the file was not
sl@0
   720
   opened for writing.
sl@0
   721
*/
sl@0
   722
sl@0
   723
//ZEXTERN int ZEXPORT    gzread  OF((gzFile file, voidp buf, unsigned len));
sl@0
   724
/*
sl@0
   725
     Reads the given number of uncompressed bytes from the compressed file.
sl@0
   726
   If the input file was not in gzip format, gzread copies the given number
sl@0
   727
   of bytes into the buffer.
sl@0
   728
     gzread returns the number of uncompressed bytes actually read (0 for
sl@0
   729
   end of file, -1 for error). */
sl@0
   730
sl@0
   731
//ZEXTERN int ZEXPORT    gzwrite OF((gzFile file, 
sl@0
   732
//				   const voidp buf, unsigned len));
sl@0
   733
/*
sl@0
   734
     Writes the given number of uncompressed bytes into the compressed file.
sl@0
   735
   gzwrite returns the number of uncompressed bytes actually written
sl@0
   736
   (0 in case of error).
sl@0
   737
*/
sl@0
   738
sl@0
   739
//ZEXTERN int ZEXPORTVA   gzprintf OF((gzFile file, const char *format, ...));
sl@0
   740
/*
sl@0
   741
     Converts, formats, and writes the args to the compressed file under
sl@0
   742
   control of the format string, as in fprintf. gzprintf returns the number of
sl@0
   743
   uncompressed bytes actually written (0 in case of error).
sl@0
   744
*/
sl@0
   745
sl@0
   746
//ZEXTERN int ZEXPORT gzputs OF((gzFile file, const char *s));
sl@0
   747
/*
sl@0
   748
      Writes the given null-terminated string to the compressed file, excluding
sl@0
   749
   the terminating null character.
sl@0
   750
      gzputs returns the number of characters written, or -1 in case of error.
sl@0
   751
*/
sl@0
   752
sl@0
   753
//ZEXTERN char * ZEXPORT gzgets OF((gzFile file, char *buf, int len));
sl@0
   754
/*
sl@0
   755
      Reads bytes from the compressed file until len-1 characters are read, or
sl@0
   756
   a newline character is read and transferred to buf, or an end-of-file
sl@0
   757
   condition is encountered.  The string is then terminated with a null
sl@0
   758
   character.
sl@0
   759
      gzgets returns buf, or Z_NULL in case of error.
sl@0
   760
*/
sl@0
   761
sl@0
   762
//ZEXTERN int ZEXPORT    gzputc OF((gzFile file, int c));
sl@0
   763
/*
sl@0
   764
      Writes c, converted to an unsigned char, into the compressed file.
sl@0
   765
   gzputc returns the value that was written, or -1 in case of error.
sl@0
   766
*/
sl@0
   767
sl@0
   768
//ZEXTERN int ZEXPORT    gzgetc OF((gzFile file));
sl@0
   769
/*
sl@0
   770
      Reads one byte from the compressed file. gzgetc returns this byte
sl@0
   771
   or -1 in case of end of file or error.
sl@0
   772
*/
sl@0
   773
sl@0
   774
//ZEXTERN int ZEXPORT    gzflush OF((gzFile file, int flush));
sl@0
   775
/*
sl@0
   776
     Flushes all pending output into the compressed file. The parameter
sl@0
   777
   flush is as in the deflate() function. The return value is the zlib
sl@0
   778
   error number (see function gzerror below). gzflush returns Z_OK if
sl@0
   779
   the flush parameter is Z_FINISH and all output could be flushed.
sl@0
   780
     gzflush should be called only when strictly necessary because it can
sl@0
   781
   degrade compression.
sl@0
   782
*/
sl@0
   783
sl@0
   784
//ZEXTERN z_off_t ZEXPORT    gzseek OF((gzFile file,
sl@0
   785
//				      z_off_t offset, int whence));
sl@0
   786
/* 
sl@0
   787
      Sets the starting position for the next gzread or gzwrite on the
sl@0
   788
   given compressed file. The offset represents a number of bytes in the
sl@0
   789
   uncompressed data stream. The whence parameter is defined as in lseek(2);
sl@0
   790
   the value SEEK_END is not supported.
sl@0
   791
     If the file is opened for reading, this function is emulated but can be
sl@0
   792
   extremely slow. If the file is opened for writing, only forward seeks are
sl@0
   793
   supported; gzseek then compresses a sequence of zeroes up to the new
sl@0
   794
   starting position.
sl@0
   795
sl@0
   796
      gzseek returns the resulting offset location as measured in bytes from
sl@0
   797
   the beginning of the uncompressed stream, or -1 in case of error, in
sl@0
   798
   particular if the file is opened for writing and the new starting position
sl@0
   799
   would be before the current position.
sl@0
   800
*/
sl@0
   801
sl@0
   802
//ZEXTERN int ZEXPORT    gzrewind OF((gzFile file));
sl@0
   803
/*
sl@0
   804
     Rewinds the given file. This function is supported only for reading.
sl@0
   805
sl@0
   806
   gzrewind(file) is equivalent to (int)gzseek(file, 0L, SEEK_SET)
sl@0
   807
*/
sl@0
   808
sl@0
   809
//ZEXTERN z_off_t ZEXPORT    gztell OF((gzFile file));
sl@0
   810
/*
sl@0
   811
     Returns the starting position for the next gzread or gzwrite on the
sl@0
   812
   given compressed file. This position represents a number of bytes in the
sl@0
   813
   uncompressed data stream.
sl@0
   814
sl@0
   815
   gztell(file) is equivalent to gzseek(file, 0L, SEEK_CUR)
sl@0
   816
*/
sl@0
   817
sl@0
   818
//ZEXTERN int ZEXPORT gzeof OF((gzFile file));
sl@0
   819
/*
sl@0
   820
     Returns 1 when EOF has previously been detected reading the given
sl@0
   821
   input stream, otherwise zero.
sl@0
   822
*/
sl@0
   823
sl@0
   824
//ZEXTERN int ZEXPORT    gzclose OF((gzFile file));
sl@0
   825
/*
sl@0
   826
     Flushes all pending output if necessary, closes the compressed file
sl@0
   827
   and deallocates all the (de)compression state. The return value is the zlib
sl@0
   828
   error number (see function gzerror below).
sl@0
   829
*/
sl@0
   830
sl@0
   831
//ZEXTERN const char * ZEXPORT gzerror OF((gzFile file, int *errnum));
sl@0
   832
/*
sl@0
   833
     Returns the error message for the last error which occurred on the
sl@0
   834
   given compressed file. errnum is set to zlib error number. If an
sl@0
   835
   error occurred in the file system and not in the compression library,
sl@0
   836
   errnum is set to Z_ERRNO and the application may consult errno
sl@0
   837
   to get the exact error code.
sl@0
   838
*/
sl@0
   839
sl@0
   840
                        /* checksum functions */
sl@0
   841
sl@0
   842
/*
sl@0
   843
     These functions are not related to compression but are exported
sl@0
   844
   anyway because they might be useful in applications using the
sl@0
   845
   compression library.
sl@0
   846
*/
sl@0
   847
sl@0
   848
ZEXTERN uLong ZEXPORT adler32 OF((uLong adler, const Bytef *buf, uInt len));
sl@0
   849
sl@0
   850
/*
sl@0
   851
     Update a running Adler-32 checksum with the bytes buf[0..len-1] and
sl@0
   852
   return the updated checksum. If buf is NULL, this function returns
sl@0
   853
   the required initial value for the checksum.
sl@0
   854
   An Adler-32 checksum is almost as reliable as a CRC32 but can be computed
sl@0
   855
   much faster. Usage example:
sl@0
   856
sl@0
   857
     uLong adler = adler32(0L, Z_NULL, 0);
sl@0
   858
sl@0
   859
     while (read_buffer(buffer, length) != EOF) {
sl@0
   860
       adler = adler32(adler, buffer, length);
sl@0
   861
     }
sl@0
   862
     if (adler != original_adler) error();
sl@0
   863
*/
sl@0
   864
sl@0
   865
ZEXTERN uLong ZEXPORT crc32   OF((uLong crc, const Bytef *buf, uInt len));
sl@0
   866
/*
sl@0
   867
     Update a running crc with the bytes buf[0..len-1] and return the updated
sl@0
   868
   crc. If buf is NULL, this function returns the required initial value
sl@0
   869
   for the crc. Pre- and post-conditioning (one's complement) is performed
sl@0
   870
   within this function so it shouldn't be done by the application.
sl@0
   871
   Usage example:
sl@0
   872
sl@0
   873
     uLong crc = crc32(0L, Z_NULL, 0);
sl@0
   874
sl@0
   875
     while (read_buffer(buffer, length) != EOF) {
sl@0
   876
       crc = crc32(crc, buffer, length);
sl@0
   877
     }
sl@0
   878
     if (crc != original_crc) error();
sl@0
   879
*/
sl@0
   880
sl@0
   881
sl@0
   882
                        /* various hacks, don't look :) */
sl@0
   883
sl@0
   884
/* deflateInit and inflateInit are macros to allow checking the zlib version
sl@0
   885
 * and the compiler's view of z_stream:
sl@0
   886
 */
sl@0
   887
ZEXTERN int ZEXPORT deflateInit_ OF((z_streamp strm, int level,
sl@0
   888
                                     const char *version, int stream_size));
sl@0
   889
ZEXTERN int ZEXPORT inflateInit_ OF((z_streamp strm,
sl@0
   890
                                     const char *version, int stream_size));
sl@0
   891
ZEXTERN int ZEXPORT deflateInit2_ OF((z_streamp strm, int  level, int  method,
sl@0
   892
                                      int windowBits, int memLevel,
sl@0
   893
                                      int strategy, const char *version,
sl@0
   894
                                      int stream_size));
sl@0
   895
ZEXTERN int ZEXPORT inflateInit2_ OF((z_streamp strm, int  windowBits,
sl@0
   896
                                      const char *version, int stream_size));
sl@0
   897
#define deflateInit(strm, level) \
sl@0
   898
        deflateInit_((strm), (level),       ZLIB_VERSION, sizeof(z_stream))
sl@0
   899
#define inflateInit(strm) \
sl@0
   900
        inflateInit_((strm),                ZLIB_VERSION, sizeof(z_stream))
sl@0
   901
#define deflateInit2(strm, level, method, windowBits, memLevel, strategy) \
sl@0
   902
        deflateInit2_((strm),(level),(method),(windowBits),(memLevel),\
sl@0
   903
                      (strategy),           ZLIB_VERSION, sizeof(z_stream))
sl@0
   904
#define inflateInit2(strm, windowBits) \
sl@0
   905
        inflateInit2_((strm), (windowBits), ZLIB_VERSION, sizeof(z_stream))
sl@0
   906
sl@0
   907
sl@0
   908
#if !defined(_Z_UTIL_H) && !defined(NO_DUMMY_DECL)
sl@0
   909
	/**
sl@0
   910
	 * @publishedAll 
sl@0
   911
	 * @released
sl@0
   912
	 */
sl@0
   913
    struct internal_state {int dummy;}; /* hack for buggy compilers */
sl@0
   914
#endif
sl@0
   915
sl@0
   916
ZEXTERN const char   * ZEXPORT zError           OF((int err));
sl@0
   917
ZEXTERN int            ZEXPORT inflateSyncPoint OF((z_streamp z));
sl@0
   918
ZEXTERN const uLongf * ZEXPORT get_crc_table    OF((void));
sl@0
   919
sl@0
   920
#ifdef __cplusplus
sl@0
   921
}
sl@0
   922
#endif
sl@0
   923
#endif /* _ZLIB_H */