1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/compressionlibs/ziplib/inc/zconf.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,384 @@
1.4 +/* Portions Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 + * All rights reserved.
1.6 + */
1.7 +
1.8 +/* zconf.h -- configuration of the zlib compression library
1.9 + * Copyright (C) 1995-2005 Jean-loup Gailly.
1.10 + * For conditions of distribution and use, see copyright notice in zlib.h
1.11 + */
1.12 +
1.13 +/**
1.14 +@file
1.15 +@publishedAll
1.16 +@externallyDefinedApi
1.17 +*/
1.18 +
1.19 +/* @(#) $Id$ */
1.20 +
1.21 +#ifndef _ZCONF_H
1.22 +#define _ZCONF_H
1.23 +
1.24 +#if (defined(__TOOLS2__) || defined(__TOOLS__))
1.25 + /** Defined as nothing for tools builds, as EXPORT_C keyword not supported on these platforms */
1.26 + #define EXPORT_C
1.27 +#else
1.28 +#ifdef __SYMBIAN32__
1.29 + #include <e32def.h> /* Include for definition of IMPORT_C below */
1.30 + /** This macro is used in function prototypes in zlib.h and libzcore.h. Use Symbian definition IMPORT_C instead of ZEXTERN */
1.31 + #define ZEXTERN IMPORT_C
1.32 + /** This macro is used for EZLIB component */
1.33 + #define SYMBIAN_EZLIB_DEVICE
1.34 +#endif /* __SYMBIAN32__ */
1.35 +#endif /* __TOOLS2__ || __TOOLS__ */
1.36 +
1.37 +
1.38 +/*
1.39 + * If you *really* need a unique prefix for all types and library functions,
1.40 + * compile with -DZ_PREFIX. The "standard" zlib should be compiled without it.
1.41 + */
1.42 +#ifdef Z_PREFIX
1.43 +# define deflateInit_ z_deflateInit_
1.44 +# define deflate z_deflate
1.45 +# define deflateEnd z_deflateEnd
1.46 +# define inflateInit_ z_inflateInit_
1.47 +# define inflate z_inflate
1.48 +# define inflateEnd z_inflateEnd
1.49 +# define deflateInit2_ z_deflateInit2_
1.50 +# define deflateSetDictionary z_deflateSetDictionary
1.51 +# define deflateCopy z_deflateCopy
1.52 +# define deflateReset z_deflateReset
1.53 +# define deflateParams z_deflateParams
1.54 +# define deflateBound z_deflateBound
1.55 +# define deflatePrime z_deflatePrime
1.56 +# define inflateInit2_ z_inflateInit2_
1.57 +# define inflateSetDictionary z_inflateSetDictionary
1.58 +# define inflateSync z_inflateSync
1.59 +# define inflateSyncPoint z_inflateSyncPoint
1.60 +# define inflateCopy z_inflateCopy
1.61 +# define inflateReset z_inflateReset
1.62 +# define inflateBack z_inflateBack
1.63 +# define inflateBackEnd z_inflateBackEnd
1.64 +# define compress z_compress
1.65 +# define compress2 z_compress2
1.66 +# define compressBound z_compressBound
1.67 +# define uncompress z_uncompress
1.68 +# define adler32 z_adler32
1.69 +# define crc32 z_crc32
1.70 +# define get_crc_table z_get_crc_table
1.71 +# define zError z_zError
1.72 +
1.73 +# define alloc_func z_alloc_func
1.74 +# define free_func z_free_func
1.75 +# define in_func z_in_func
1.76 +# define out_func z_out_func
1.77 +# define Byte z_Byte
1.78 +# define uInt z_uInt
1.79 +# define uLong z_uLong
1.80 +# define Bytef z_Bytef
1.81 +# define charf z_charf
1.82 +# define intf z_intf
1.83 +# define uIntf z_uIntf
1.84 +# define uLongf z_uLongf
1.85 +# define voidpf z_voidpf
1.86 +# define voidp z_voidp
1.87 +#endif
1.88 +
1.89 +#if defined(__MSDOS__) && !defined(MSDOS)
1.90 +# define MSDOS
1.91 +#endif
1.92 +#if (defined(OS_2) || defined(__OS2__)) && !defined(OS2)
1.93 +# define OS2
1.94 +#endif
1.95 +#if defined(_WINDOWS) && !defined(WINDOWS)
1.96 +# define WINDOWS
1.97 +#endif
1.98 +#if defined(_WIN32) || defined(_WIN32_WCE) || defined(__WIN32__)
1.99 +# ifndef WIN32
1.100 +# define WIN32
1.101 +# endif
1.102 +#endif
1.103 +#if (defined(MSDOS) || defined(OS2) || defined(WINDOWS)) && !defined(WIN32)
1.104 +# if !defined(__GNUC__) && !defined(__FLAT__) && !defined(__386__)
1.105 +# ifndef SYS16BIT
1.106 +# define SYS16BIT
1.107 +# endif
1.108 +# endif
1.109 +#endif
1.110 +
1.111 +/*
1.112 + * Compile with -DMAXSEG_64K if the alloc function cannot allocate more
1.113 + * than 64k bytes at a time (needed on systems with 16-bit int).
1.114 + */
1.115 +#ifdef SYS16BIT
1.116 +# define MAXSEG_64K
1.117 +#endif
1.118 +#ifdef MSDOS
1.119 +# define UNALIGNED_OK
1.120 +#endif
1.121 +
1.122 +#ifdef __STDC_VERSION__
1.123 +# ifndef STDC
1.124 +# define STDC
1.125 +# endif
1.126 +# if __STDC_VERSION__ >= 199901L
1.127 +# ifndef STDC99
1.128 +# define STDC99
1.129 +# endif
1.130 +# endif
1.131 +#endif
1.132 +#if !defined(STDC) && (defined(__STDC__) || defined(__cplusplus))
1.133 +/** define STDC i.e. Standard C */
1.134 +# define STDC
1.135 +#endif
1.136 +#if !defined(STDC) && (defined(__GNUC__) || defined(__BORLANDC__))
1.137 +# define STDC
1.138 +#endif
1.139 +#if !defined(STDC) && (defined(MSDOS) || defined(WINDOWS) || defined(WIN32))
1.140 +# define STDC
1.141 +#endif
1.142 +#if !defined(STDC) && (defined(OS2) || defined(__HOS_AIX__))
1.143 +# define STDC
1.144 +#endif
1.145 +
1.146 +#if defined(__OS400__) && !defined(STDC) /* iSeries (formerly AS/400). */
1.147 +# define STDC
1.148 +#endif
1.149 +
1.150 +#ifndef STDC
1.151 +# ifndef const /* cannot use !defined(STDC) && !defined(const) on Mac */
1.152 +# define const /* note: need a more gentle solution here */
1.153 +# endif
1.154 +#endif
1.155 +
1.156 +/* Some Mac compilers merge all .h files incorrectly: */
1.157 +#if defined(__MWERKS__)||defined(applec)||defined(THINK_C)||defined(__SC__)
1.158 +# define NO_DUMMY_DECL
1.159 +#endif
1.160 +
1.161 +#ifndef MAX_MEM_LEVEL
1.162 +# ifdef MAXSEG_64K
1.163 +/** Maximum value for memLevel in deflateInit2 */
1.164 +# define MAX_MEM_LEVEL 8
1.165 +# else
1.166 +/** Maximum value for memLevel in deflateInit2 */
1.167 +# define MAX_MEM_LEVEL 9
1.168 +# endif
1.169 +#endif
1.170 +
1.171 +/* Maximum value for windowBits in deflateInit2 and inflateInit2.
1.172 + * WARNING: reducing MAX_WBITS makes minigzip unable to extract .gz files
1.173 + * created by gzip. (Files created by minigzip can still be extracted by
1.174 + * gzip.)
1.175 + */
1.176 +#ifndef MAX_WBITS
1.177 +/** 32K LZ77 window */
1.178 +# define MAX_WBITS 15
1.179 +#endif
1.180 +
1.181 +/* The memory requirements for deflate are (in bytes):
1.182 + (1 << (windowBits+2)) + (1 << (memLevel+9))
1.183 + that is: 128K for windowBits=15 + 128K for memLevel = 8 (default values)
1.184 + plus a few kilobytes for small objects. For example, if you want to reduce
1.185 + the default memory requirements from 256K to 128K, compile with
1.186 + make CFLAGS="-O -DMAX_WBITS=14 -DMAX_MEM_LEVEL=7"
1.187 + Of course this will generally degrade compression (there's no free lunch).
1.188 +
1.189 + The memory requirements for inflate are (in bytes) 1 << windowBits
1.190 + that is, 32K for windowBits=15 (default value) plus a few kilobytes
1.191 + for small objects.
1.192 +*/
1.193 +
1.194 + /* Type declarations */
1.195 +
1.196 +#ifndef OF /* function prototypes */
1.197 +# ifdef STDC
1.198 +/**
1.199 + Function prototypes
1.200 + @param args arguments ...
1.201 +*/
1.202 +# define OF(args) args
1.203 +# else
1.204 +/** Function prototypes */
1.205 +# define OF(args) ()
1.206 +# endif
1.207 +#endif
1.208 +
1.209 +/* The following definitions for FAR are needed only for MSDOS mixed
1.210 + * model programming (small or medium model with some far allocations).
1.211 + * This was tested only with MSC; for other MSDOS compilers you may have
1.212 + * to define NO_MEMCPY in zutil.h. If you don't need the mixed model,
1.213 + * just define FAR to be empty.
1.214 + */
1.215 +#ifdef SYS16BIT
1.216 +# if defined(M_I86SM) || defined(M_I86MM)
1.217 + /* MSC small or medium model */
1.218 +# define SMALL_MEDIUM
1.219 +# ifdef _MSC_VER
1.220 +# define FAR _far
1.221 +# else
1.222 +# define FAR far
1.223 +# endif
1.224 +# endif
1.225 +# if (defined(__SMALL__) || defined(__MEDIUM__))
1.226 + /* Turbo C small or medium model */
1.227 +# define SMALL_MEDIUM
1.228 +# ifdef __BORLANDC__
1.229 +# define FAR _far
1.230 +# else
1.231 +# define FAR far
1.232 +# endif
1.233 +# endif
1.234 +#endif
1.235 +
1.236 +#if defined(WINDOWS) || defined(WIN32)
1.237 + /* If building or using zlib as a DLL, define ZLIB_DLL.
1.238 + * This is not mandatory, but it offers a little performance increase.
1.239 + */
1.240 +# ifdef ZLIB_DLL
1.241 +# if defined(WIN32) && (!defined(__BORLANDC__) || (__BORLANDC__ >= 0x500))
1.242 +# ifdef ZLIB_INTERNAL
1.243 +# define ZEXTERN extern __declspec(dllexport)
1.244 +# else
1.245 +# define ZEXTERN extern __declspec(dllimport)
1.246 +# endif
1.247 +# endif
1.248 +# endif /* ZLIB_DLL */
1.249 + /* If building or using zlib with the WINAPI/WINAPIV calling convention,
1.250 + * define ZLIB_WINAPI.
1.251 + * Caution: the standard ZLIB1.DLL is NOT compiled using ZLIB_WINAPI.
1.252 + */
1.253 +# ifdef ZLIB_WINAPI
1.254 +# ifdef FAR
1.255 +# undef FAR
1.256 +# endif
1.257 +# include <windows.h>
1.258 + /* No need for _export, use ZLIB.DEF instead. */
1.259 + /* For complete Windows compatibility, use WINAPI, not __stdcall. */
1.260 +# define ZEXPORT WINAPI
1.261 +# ifdef WIN32
1.262 +# define ZEXPORTVA WINAPIV
1.263 +# else
1.264 +# define ZEXPORTVA FAR CDECL
1.265 +# endif
1.266 +# endif
1.267 +#endif
1.268 +
1.269 +#if defined (__BEOS__)
1.270 +# ifdef ZLIB_DLL
1.271 +# ifdef ZLIB_INTERNAL
1.272 +# define ZEXPORT __declspec(dllexport)
1.273 +# define ZEXPORTVA __declspec(dllexport)
1.274 +# else
1.275 +# define ZEXPORT __declspec(dllimport)
1.276 +# define ZEXPORTVA __declspec(dllimport)
1.277 +# endif
1.278 +# endif
1.279 +#endif
1.280 +
1.281 +#ifndef ZEXTERN
1.282 +/** extern defined as ZEXTERN */
1.283 +# define ZEXTERN extern
1.284 +#endif
1.285 +#ifndef ZEXPORT
1.286 +# define ZEXPORT
1.287 +#endif
1.288 +#ifndef ZEXPORTVA
1.289 +# define ZEXPORTVA
1.290 +#endif
1.291 +
1.292 +
1.293 +#ifndef FAR
1.294 +# define FAR
1.295 +#endif
1.296 +
1.297 +#if !defined(__MACTYPES__)
1.298 +/** 8 bits */
1.299 +typedef unsigned char Byte;
1.300 +#endif
1.301 +/** 16 bits or more */
1.302 +typedef unsigned int uInt;
1.303 +/** 32 bits or more */
1.304 +typedef unsigned long uLong;
1.305 +
1.306 +#ifdef SMALL_MEDIUM
1.307 + /** Borland C/C++ and some old MSC versions ignore FAR inside typedef */
1.308 +# define Bytef Byte FAR
1.309 +#else
1.310 + /** Borland C/C++ and some old MSC versions ignore FAR inside typedef */
1.311 + typedef Byte FAR Bytef;
1.312 +#endif
1.313 +/** char typedef to charf */
1.314 +typedef char FAR charf;
1.315 +/** int typedef to intf */
1.316 +typedef int FAR intf;
1.317 +/** uInt typedef to uIntf */
1.318 +typedef uInt FAR uIntf;
1.319 +/** uLong typedef to uLongf */
1.320 +typedef uLong FAR uLongf;
1.321 +
1.322 +#ifdef STDC
1.323 + /** typedef void const* to voidpc */
1.324 + typedef void const *voidpc;
1.325 + /** typedef void FAR* to voidpf */
1.326 + typedef void FAR *voidpf;
1.327 + /** typedef void* to voidp */
1.328 + typedef void *voidp;
1.329 +#else
1.330 + /** typedef Byte const* to voidpc */
1.331 + typedef Byte const *voidpc;
1.332 + /** typedef Byte FAR* to voidpf */
1.333 + typedef Byte FAR *voidpf;
1.334 + /** typedef Byte* to voidp */
1.335 + typedef Byte *voidp;
1.336 +#endif
1.337 +
1.338 +#if 0 /* HAVE_UNISTD_H -- this line is updated by ./configure */
1.339 +# include <sys/types.h> /* for off_t */
1.340 +# include <unistd.h> /* for SEEK_* and off_t */
1.341 +# ifdef VMS
1.342 +# include <unixio.h> /* for off_t */
1.343 +# endif
1.344 +# define z_off_t off_t
1.345 +#endif
1.346 +#ifndef SEEK_SET
1.347 +/** Seek from beginning of file. */
1.348 +# define SEEK_SET 0
1.349 +/** Seek from current position. */
1.350 +# define SEEK_CUR 1
1.351 +/** Set file pointer to EOF plus "offset" */
1.352 +# define SEEK_END 2
1.353 +#endif
1.354 +#ifndef z_off_t
1.355 +/** define z_off_t as long */
1.356 +# define z_off_t long
1.357 +#endif
1.358 +
1.359 +#if defined(__OS400__)
1.360 +# define NO_vsnprintf
1.361 +#endif
1.362 +
1.363 +#if defined(__MVS__)
1.364 +# define NO_vsnprintf
1.365 +# ifdef FAR
1.366 +# undef FAR
1.367 +# endif
1.368 +#endif
1.369 +
1.370 +/* MVS linker does not support external names larger than 8 bytes */
1.371 +#if defined(__MVS__)
1.372 +# pragma map(deflateInit_,"DEIN")
1.373 +# pragma map(deflateInit2_,"DEIN2")
1.374 +# pragma map(deflateEnd,"DEEND")
1.375 +# pragma map(deflateBound,"DEBND")
1.376 +# pragma map(inflateInit_,"ININ")
1.377 +# pragma map(inflateInit2_,"ININ2")
1.378 +# pragma map(inflateEnd,"INEND")
1.379 +# pragma map(inflateSync,"INSY")
1.380 +# pragma map(inflateSetDictionary,"INSEDI")
1.381 +# pragma map(compressBound,"CMBND")
1.382 +# pragma map(inflate_table,"INTABL")
1.383 +# pragma map(inflate_fast,"INFA")
1.384 +# pragma map(inflate_copyright,"INCOPY")
1.385 +#endif
1.386 +
1.387 +#endif /* _ZCONF_H */