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
|
---|
|
---|