| 1 | /* zconf.h -- configuration of the zlib compression library
|
|---|
| 2 | * Copyright (C) 1995-2005 Jean-loup Gailly.
|
|---|
| 3 | * For conditions of distribution and use, see copyright notice in zlib.h
|
|---|
| 4 | */
|
|---|
| 5 |
|
|---|
| 6 | /* @(#) $Id$ */
|
|---|
| 7 |
|
|---|
| 8 | #ifndef ZCONF_H
|
|---|
| 9 | #define ZCONF_H
|
|---|
| 10 |
|
|---|
| 11 | /*
|
|---|
| 12 | * If you *really* need a unique prefix for all types and library functions,
|
|---|
| 13 | * compile with -DZ_PREFIX. The "standard" zlib should be compiled without it.
|
|---|
| 14 | */
|
|---|
| 15 | #ifdef Z_PREFIX
|
|---|
| 16 | # define deflateInit_ z_deflateInit_
|
|---|
| 17 | # define deflate z_deflate
|
|---|
| 18 | # define deflateEnd z_deflateEnd
|
|---|
| 19 | # define inflateInit_ z_inflateInit_
|
|---|
| 20 | # define inflate z_inflate
|
|---|
| 21 | # define inflateEnd z_inflateEnd
|
|---|
| 22 | # define deflateInit2_ z_deflateInit2_
|
|---|
| 23 | # define deflateSetDictionary z_deflateSetDictionary
|
|---|
| 24 | # define deflateCopy z_deflateCopy
|
|---|
| 25 | # define deflateReset z_deflateReset
|
|---|
| 26 | # define deflateParams z_deflateParams
|
|---|
| 27 | # define deflateBound z_deflateBound
|
|---|
| 28 | # define deflatePrime z_deflatePrime
|
|---|
| 29 | # define inflateInit2_ z_inflateInit2_
|
|---|
| 30 | # define inflateSetDictionary z_inflateSetDictionary
|
|---|
| 31 | # define inflateSync z_inflateSync
|
|---|
| 32 | # define inflateSyncPoint z_inflateSyncPoint
|
|---|
| 33 | # define inflateCopy z_inflateCopy
|
|---|
| 34 | # define inflateReset z_inflateReset
|
|---|
| 35 | # define inflateBack z_inflateBack
|
|---|
| 36 | # define inflateBackEnd z_inflateBackEnd
|
|---|
| 37 | # define compress z_compress
|
|---|
| 38 | # define compress2 z_compress2
|
|---|
| 39 | # define compressBound z_compressBound
|
|---|
| 40 | # define uncompress z_uncompress
|
|---|
| 41 | # define adler32 z_adler32
|
|---|
| 42 | # define crc32 z_crc32
|
|---|
| 43 | # define get_crc_table z_get_crc_table
|
|---|
| 44 | # define zError z_zError
|
|---|
| 45 |
|
|---|
| 46 | # define alloc_func z_alloc_func
|
|---|
| 47 | # define free_func z_free_func
|
|---|
| 48 | # define in_func z_in_func
|
|---|
|
|---|