00001
00002
00003
00004
00005
00006
00007
00008 #ifndef _ZCONF_H
00009 #define _ZCONF_H
00010
00011
00012
00013
00014
00015 #ifdef Z_PREFIX
00016 # define deflateInit_ z_deflateInit_
00017 # define deflate z_deflate
00018 # define deflateEnd z_deflateEnd
00019 # define inflateInit_ z_inflateInit_
00020 # define inflate z_inflate
00021 # define inflateEnd z_inflateEnd
00022 # define deflateInit2_ z_deflateInit2_
00023 # define deflateSetDictionary z_deflateSetDictionary
00024 # define deflateCopy z_deflateCopy
00025 # define deflateReset z_deflateReset
00026 # define deflateParams z_deflateParams
00027 # define inflateInit2_ z_inflateInit2_
00028 # define inflateSetDictionary z_inflateSetDictionary
00029 # define inflateSync z_inflateSync
00030 # define inflateSyncPoint z_inflateSyncPoint
00031 # define inflateReset z_inflateReset
00032 # define compress z_compress
00033 # define compress2 z_compress2
00034 # define uncompress z_uncompress
00035 # define adler32 z_adler32
00036 # define crc32 z_crc32
00037 # define get_crc_table z_get_crc_table
00038
00039 # define Byte z_Byte
00040 # define uInt z_uInt
00041 # define uLong z_uLong
00042 # define Bytef z_Bytef
00043 # define charf z_charf
00044 # define intf z_intf
00045 # define uIntf z_uIntf
00046 # define uLongf z_uLongf
00047 # define voidpf z_voidpf
00048 # define voidp z_voidp
00049 #endif
00050
00051 #if (defined(_WIN32) || defined(__WIN32__)) && !defined(WIN32)
00052 # define WIN32
00053 #endif
00054 #if defined(__GNUC__) || defined(WIN32) || defined(__386__) || defined(i386)
00055 # ifndef __32BIT__
00056 # define __32BIT__
00057 # endif
00058 #endif
00059 #if defined(__MSDOS__) && !defined(MSDOS)
00060 # define MSDOS
00061 #endif
00062
00063
00064
00065
00066
00067 #if defined(MSDOS) && !defined(__32BIT__)
00068 # define MAXSEG_64K
00069 #endif
00070 #ifdef MSDOS
00071 # define UNALIGNED_OK
00072 #endif
00073
00074 #if (defined(MSDOS) || defined(_WINDOWS) || defined(WIN32)) && !defined(STDC)
00075 # define STDC
00076 #endif
00077 #if defined(__STDC__) || defined(__cplusplus) || defined(__OS2__)
00078 # ifndef STDC
00079 # define STDC
00080 # endif
00081 #endif
00082
00083 #ifndef STDC
00084 # ifndef const
00085 # define const
00086 # endif
00087 #endif
00088
00089
00090 #if defined(__MWERKS__) || defined(applec) ||defined(THINK_C) ||defined(__SC__)
00091 # define NO_DUMMY_DECL
00092 #endif
00093
00094
00095 #if defined(__BORLANDC__) && (__BORLANDC__ < 0x500)
00096 # define NEED_DUMMY_RETURN
00097 #endif
00098
00099
00100
00101 #ifndef MAX_MEM_LEVEL
00102 # ifdef MAXSEG_64K
00103 # define MAX_MEM_LEVEL 8
00104 # else
00105 # define MAX_MEM_LEVEL 9
00106 # endif
00107 #endif
00108
00109
00110
00111
00112
00113
00114 #ifndef MAX_WBITS
00115 # define MAX_WBITS 15
00116 #endif
00117
00118
00119
00120
00121
00122
00123
00124
00125
00126
00127
00128
00129
00130
00131
00132
00133 #ifndef OF
00134 # ifdef STDC
00135 # define OF(args) args
00136 # else
00137 # define OF(args) ()
00138 # endif
00139 #endif
00140
00141
00142
00143
00144
00145
00146
00147 #if (defined(M_I86SM) || defined(M_I86MM)) && !defined(__32BIT__)
00148
00149 # define SMALL_MEDIUM
00150 # ifdef _MSC_VER
00151 # define FAR _far
00152 # else
00153 # define FAR far
00154 # endif
00155 #endif
00156 #if defined(__BORLANDC__) && (defined(__SMALL__) || defined(__MEDIUM__))
00157 # ifndef __32BIT__
00158 # define SMALL_MEDIUM
00159 # define FAR _far
00160 # endif
00161 #endif
00162
00163
00164 #if defined(ZLIB_DLL)
00165 # if defined(_WINDOWS) || defined(WINDOWS)
00166 # ifdef FAR
00167 # undef FAR
00168 # endif
00169 # include <windows.h>
00170 # define ZEXPORT WINAPI
00171 # ifdef WIN32
00172 # define ZEXPORTVA WINAPIV
00173 # else
00174 # define ZEXPORTVA FAR _cdecl _export
00175 # endif
00176 # endif
00177 # if defined (__BORLANDC__)
00178 # if (__BORLANDC__ >= 0x0500) && defined (WIN32)
00179 # include <windows.h>
00180 # define ZEXPORT __declspec(dllexport) WINAPI
00181 # define ZEXPORTRVA __declspec(dllexport) WINAPIV
00182 # else
00183 # if defined (_Windows) && defined (__DLL__)
00184 # define ZEXPORT _export
00185 # define ZEXPORTVA _export
00186 # endif
00187 # endif
00188 # endif
00189 #endif
00190
00191 #if defined (__BEOS__)
00192 # if defined (ZLIB_DLL)
00193 # define ZEXTERN extern __declspec(dllexport)
00194 # else
00195 # define ZEXTERN extern __declspec(dllimport)
00196 # endif
00197 #endif
00198
00199 #ifndef ZEXPORT
00200 # define ZEXPORT
00201 #endif
00202 #ifndef ZEXPORTVA
00203 # define ZEXPORTVA
00204 #endif
00205 #ifndef ZEXTERN
00206 # define ZEXTERN extern
00207 #endif
00208
00209 #ifndef FAR
00210 # define FAR
00211 #endif
00212
00213 #if !defined(MACOS) && !defined(TARGET_OS_MAC) && !defined(VCL)
00214 typedef unsigned char Byte;
00215 #endif
00216 typedef unsigned int uInt;
00217 typedef unsigned long uLong;
00218
00219 #ifdef SMALL_MEDIUM
00220
00221 # define Bytef Byte FAR
00222 #else
00223 typedef Byte FAR Bytef;
00224 #endif
00225 typedef char FAR charf;
00226 typedef int FAR intf;
00227 typedef uInt FAR uIntf;
00228 typedef uLong FAR uLongf;
00229
00230 #ifdef STDC
00231 typedef void FAR *voidpf;
00232 typedef void *voidp;
00233 #else
00234 typedef Byte FAR *voidpf;
00235 typedef Byte *voidp;
00236 #endif
00237
00238 #ifdef HAVE_UNISTD_H
00239 # include <sys/types.h>
00240 # include <unistd.h>
00241 # define z_off_t off_t
00242 #endif
00243 #ifndef SEEK_SET
00244 # define SEEK_SET 0
00245 # define SEEK_CUR 1
00246 # define SEEK_END 2
00247 #endif
00248 #ifndef z_off_t
00249 # define z_off_t long
00250 #endif
00251
00252
00253 #if defined(__MVS__)
00254 # pragma map(deflateInit_,"DEIN")
00255 # pragma map(deflateInit2_,"DEIN2")
00256 # pragma map(deflateEnd,"DEEND")
00257 # pragma map(inflateInit_,"ININ")
00258 # pragma map(inflateInit2_,"ININ2")
00259 # pragma map(inflateEnd,"INEND")
00260 # pragma map(inflateSync,"INSY")
00261 # pragma map(inflateSetDictionary,"INSEDI")
00262 # pragma map(inflate_blocks,"INBL")
00263 # pragma map(inflate_blocks_new,"INBLNE")
00264 # pragma map(inflate_blocks_free,"INBLFR")
00265 # pragma map(inflate_blocks_reset,"INBLRE")
00266 # pragma map(inflate_codes_free,"INCOFR")
00267 # pragma map(inflate_codes,"INCO")
00268 # pragma map(inflate_fast,"INFA")
00269 # pragma map(inflate_flush,"INFLU")
00270 # pragma map(inflate_mask,"INMA")
00271 # pragma map(inflate_set_dictionary,"INSEDI2")
00272 # pragma map(inflate_copyright,"INCOPY")
00273 # pragma map(inflate_trees_bits,"INTRBI")
00274 # pragma map(inflate_trees_dynamic,"INTRDY")
00275 # pragma map(inflate_trees_fixed,"INTRFI")
00276 # pragma map(inflate_trees_free,"INTRFR")
00277 #endif
00278
00279 #endif