os/ossrv/compressionlibs/ziplib/inc/zconf.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.
     1 /* Portions Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
     2  * All rights reserved.
     3  */
     4 
     5 /* zconf.h -- configuration of the zlib compression library
     6  * Copyright (C) 1995-2005 Jean-loup Gailly.
     7  * For conditions of distribution and use, see copyright notice in zlib.h
     8  */
     9  
    10 /** 
    11 @file
    12 @publishedAll
    13 @externallyDefinedApi
    14 */
    15 
    16 /* @(#) $Id$ */
    17 
    18 #ifndef _ZCONF_H
    19 #define _ZCONF_H
    20 
    21 #if (defined(__TOOLS2__) || defined(__TOOLS__))
    22 	/** Defined as nothing for tools builds, as EXPORT_C keyword not supported on these platforms  */
    23 	#define EXPORT_C	
    24 #else
    25 #ifdef __SYMBIAN32__
    26 	#include <e32def.h> 		/* Include for definition of IMPORT_C below */
    27 	/** This macro is used in function prototypes in zlib.h and libzcore.h.  Use Symbian definition IMPORT_C instead of ZEXTERN */ 
    28 	#define ZEXTERN IMPORT_C	
    29 	/** This macro is used for EZLIB component */
    30 	#define SYMBIAN_EZLIB_DEVICE
    31 #endif /* __SYMBIAN32__ */
    32 #endif /* __TOOLS2__ || __TOOLS__ */
    33 
    34 
    35 /*
    36  * If you *really* need a unique prefix for all types and library functions,
    37  * compile with -DZ_PREFIX. The "standard" zlib should be compiled without it.
    38  */
    39 #ifdef Z_PREFIX
    40 #  define deflateInit_          z_deflateInit_
    41 #  define deflate               z_deflate
    42 #  define deflateEnd            z_deflateEnd
    43 #  define inflateInit_          z_inflateInit_
    44 #  define inflate               z_inflate
    45 #  define inflateEnd            z_inflateEnd
    46 #  define deflateInit2_         z_deflateInit2_
    47 #  define deflateSetDictionary  z_deflateSetDictionary
    48 #  define deflateCopy           z_deflateCopy
    49 #  define deflateReset          z_deflateReset
    50 #  define deflateParams         z_deflateParams
    51 #  define deflateBound          z_deflateBound
    52 #  define deflatePrime          z_deflatePrime
    53 #  define inflateInit2_         z_inflateInit2_
    54 #  define inflateSetDictionary  z_inflateSetDictionary
    55 #  define inflateSync           z_inflateSync
    56 #  define inflateSyncPoint      z_inflateSyncPoint
    57 #  define inflateCopy           z_inflateCopy
    58 #  define inflateReset          z_inflateReset
    59 #  define inflateBack           z_inflateBack
    60 #  define inflateBackEnd        z_inflateBackEnd
    61 #  define compress              z_compress
    62 #  define compress2             z_compress2
    63 #  define compressBound         z_compressBound
    64 #  define uncompress            z_uncompress
    65 #  define adler32               z_adler32
    66 #  define crc32                 z_crc32
    67 #  define get_crc_table         z_get_crc_table
    68 #  define zError                z_zError
    69 
    70 #  define alloc_func            z_alloc_func
    71 #  define free_func             z_free_func
    72 #  define in_func               z_in_func
    73 #  define out_func              z_out_func
    74 #  define Byte                  z_Byte
    75 #  define uInt                  z_uInt
    76 #  define uLong                 z_uLong
    77 #  define Bytef                 z_Bytef
    78 #  define charf                 z_charf
    79 #  define intf                  z_intf
    80 #  define uIntf                 z_uIntf
    81 #  define uLongf                z_uLongf
    82 #  define voidpf                z_voidpf
    83 #  define voidp                 z_voidp
    84 #endif
    85 
    86 #if defined(__MSDOS__) && !defined(MSDOS)
    87 #  define MSDOS
    88 #endif
    89 #if (defined(OS_2) || defined(__OS2__)) && !defined(OS2)
    90 #  define OS2
    91 #endif
    92 #if defined(_WINDOWS) && !defined(WINDOWS)
    93 #  define WINDOWS
    94 #endif
    95 #if defined(_WIN32) || defined(_WIN32_WCE) || defined(__WIN32__)
    96 #  ifndef WIN32
    97 #    define WIN32
    98 #  endif
    99 #endif
   100 #if (defined(MSDOS) || defined(OS2) || defined(WINDOWS)) && !defined(WIN32)
   101 #  if !defined(__GNUC__) && !defined(__FLAT__) && !defined(__386__)
   102 #    ifndef SYS16BIT
   103 #      define SYS16BIT
   104 #    endif
   105 #  endif
   106 #endif
   107 
   108 /*
   109  * Compile with -DMAXSEG_64K if the alloc function cannot allocate more
   110  * than 64k bytes at a time (needed on systems with 16-bit int).
   111  */
   112 #ifdef SYS16BIT
   113 #  define MAXSEG_64K
   114 #endif
   115 #ifdef MSDOS
   116 #  define UNALIGNED_OK
   117 #endif
   118 
   119 #ifdef __STDC_VERSION__
   120 #  ifndef STDC
   121 #    define STDC
   122 #  endif
   123 #  if __STDC_VERSION__ >= 199901L
   124 #    ifndef STDC99
   125 #      define STDC99
   126 #    endif
   127 #  endif
   128 #endif
   129 #if !defined(STDC) && (defined(__STDC__) || defined(__cplusplus))
   130 /** define STDC i.e. Standard C */
   131 #  define STDC
   132 #endif
   133 #if !defined(STDC) && (defined(__GNUC__) || defined(__BORLANDC__))
   134 #  define STDC
   135 #endif
   136 #if !defined(STDC) && (defined(MSDOS) || defined(WINDOWS) || defined(WIN32))
   137 #  define STDC
   138 #endif
   139 #if !defined(STDC) && (defined(OS2) || defined(__HOS_AIX__))
   140 #  define STDC
   141 #endif
   142 
   143 #if defined(__OS400__) && !defined(STDC)    /* iSeries (formerly AS/400). */
   144 #  define STDC
   145 #endif
   146 
   147 #ifndef STDC
   148 #  ifndef const /* cannot use !defined(STDC) && !defined(const) on Mac */
   149 #    define const       /* note: need a more gentle solution here */
   150 #  endif
   151 #endif
   152 
   153 /* Some Mac compilers merge all .h files incorrectly: */
   154 #if defined(__MWERKS__)||defined(applec)||defined(THINK_C)||defined(__SC__)
   155 #  define NO_DUMMY_DECL
   156 #endif
   157 
   158 #ifndef MAX_MEM_LEVEL
   159 #  ifdef MAXSEG_64K
   160 /** Maximum value for memLevel in deflateInit2 */
   161 #    define MAX_MEM_LEVEL 8
   162 #  else
   163 /** Maximum value for memLevel in deflateInit2 */
   164 #    define MAX_MEM_LEVEL 9
   165 #  endif
   166 #endif
   167 
   168 /* Maximum value for windowBits in deflateInit2 and inflateInit2.
   169  * WARNING: reducing MAX_WBITS makes minigzip unable to extract .gz files
   170  * created by gzip. (Files created by minigzip can still be extracted by
   171  * gzip.)
   172  */
   173 #ifndef MAX_WBITS
   174 /** 32K LZ77 window */
   175 #  define MAX_WBITS   15 
   176 #endif
   177 
   178 /* The memory requirements for deflate are (in bytes):
   179             (1 << (windowBits+2)) +  (1 << (memLevel+9))
   180  that is: 128K for windowBits=15  +  128K for memLevel = 8  (default values)
   181  plus a few kilobytes for small objects. For example, if you want to reduce
   182  the default memory requirements from 256K to 128K, compile with
   183      make CFLAGS="-O -DMAX_WBITS=14 -DMAX_MEM_LEVEL=7"
   184  Of course this will generally degrade compression (there's no free lunch).
   185 
   186    The memory requirements for inflate are (in bytes) 1 << windowBits
   187  that is, 32K for windowBits=15 (default value) plus a few kilobytes
   188  for small objects.
   189 */
   190 
   191                         /* Type declarations */
   192 
   193 #ifndef OF /* function prototypes */
   194 #  ifdef STDC
   195 /** 
   196 	Function prototypes 
   197 	@param args arguments ...
   198 */
   199 #    define OF(args)  args
   200 #  else
   201 /** Function prototypes */
   202 #    define OF(args)  ()
   203 #  endif
   204 #endif
   205 
   206 /* The following definitions for FAR are needed only for MSDOS mixed
   207  * model programming (small or medium model with some far allocations).
   208  * This was tested only with MSC; for other MSDOS compilers you may have
   209  * to define NO_MEMCPY in zutil.h.  If you don't need the mixed model,
   210  * just define FAR to be empty.
   211  */
   212 #ifdef SYS16BIT
   213 #  if defined(M_I86SM) || defined(M_I86MM)
   214      /* MSC small or medium model */
   215 #    define SMALL_MEDIUM
   216 #    ifdef _MSC_VER
   217 #      define FAR _far
   218 #    else
   219 #      define FAR far
   220 #    endif
   221 #  endif
   222 #  if (defined(__SMALL__) || defined(__MEDIUM__))
   223      /* Turbo C small or medium model */
   224 #    define SMALL_MEDIUM
   225 #    ifdef __BORLANDC__
   226 #      define FAR _far
   227 #    else
   228 #      define FAR far
   229 #    endif
   230 #  endif
   231 #endif
   232 
   233 #if defined(WINDOWS) || defined(WIN32)
   234    /* If building or using zlib as a DLL, define ZLIB_DLL.
   235     * This is not mandatory, but it offers a little performance increase.
   236     */
   237 #  ifdef ZLIB_DLL
   238 #    if defined(WIN32) && (!defined(__BORLANDC__) || (__BORLANDC__ >= 0x500))
   239 #      ifdef ZLIB_INTERNAL
   240 #        define ZEXTERN extern __declspec(dllexport)
   241 #      else
   242 #        define ZEXTERN extern __declspec(dllimport)
   243 #      endif
   244 #    endif
   245 #  endif  /* ZLIB_DLL */
   246    /* If building or using zlib with the WINAPI/WINAPIV calling convention,
   247     * define ZLIB_WINAPI.
   248     * Caution: the standard ZLIB1.DLL is NOT compiled using ZLIB_WINAPI.
   249     */
   250 #  ifdef ZLIB_WINAPI
   251 #    ifdef FAR
   252 #      undef FAR
   253 #    endif
   254 #    include <windows.h>
   255      /* No need for _export, use ZLIB.DEF instead. */
   256      /* For complete Windows compatibility, use WINAPI, not __stdcall. */
   257 #    define ZEXPORT WINAPI
   258 #    ifdef WIN32
   259 #      define ZEXPORTVA WINAPIV
   260 #    else
   261 #      define ZEXPORTVA FAR CDECL
   262 #    endif
   263 #  endif
   264 #endif
   265 
   266 #if defined (__BEOS__)
   267 #  ifdef ZLIB_DLL
   268 #    ifdef ZLIB_INTERNAL
   269 #      define ZEXPORT   __declspec(dllexport)
   270 #      define ZEXPORTVA __declspec(dllexport)
   271 #    else
   272 #      define ZEXPORT   __declspec(dllimport)
   273 #      define ZEXPORTVA __declspec(dllimport)
   274 #    endif
   275 #  endif
   276 #endif
   277 
   278 #ifndef ZEXTERN
   279 /** extern defined as ZEXTERN */
   280 #  define ZEXTERN extern
   281 #endif
   282 #ifndef ZEXPORT
   283 #  define ZEXPORT
   284 #endif
   285 #ifndef ZEXPORTVA
   286 #  define ZEXPORTVA
   287 #endif
   288 
   289 
   290 #ifndef FAR
   291 #  define FAR
   292 #endif
   293 
   294 #if !defined(__MACTYPES__)
   295 /** 8 bits */
   296 typedef unsigned char  Byte;  
   297 #endif
   298 /** 16 bits or more */
   299 typedef unsigned int   uInt;  
   300 /** 32 bits or more */
   301 typedef unsigned long  uLong; 
   302 
   303 #ifdef SMALL_MEDIUM
   304    /** Borland C/C++ and some old MSC versions ignore FAR inside typedef */
   305 #  define Bytef Byte FAR
   306 #else
   307    /** Borland C/C++ and some old MSC versions ignore FAR inside typedef */
   308    typedef Byte  FAR Bytef;
   309 #endif
   310 /** char typedef to charf */
   311 typedef char  FAR charf;
   312 /** int typedef to intf */
   313 typedef int   FAR intf;
   314 /** uInt typedef to uIntf */
   315 typedef uInt  FAR uIntf;
   316 /** uLong typedef to uLongf */
   317 typedef uLong FAR uLongf;
   318 
   319 #ifdef STDC
   320    /** typedef void const* to voidpc */
   321    typedef void const *voidpc;
   322    /** typedef void FAR* to voidpf */
   323    typedef void FAR   *voidpf;
   324    /** typedef void* to voidp */
   325    typedef void       *voidp;
   326 #else
   327    /** typedef Byte const* to voidpc */
   328    typedef Byte const *voidpc;
   329    /** typedef Byte FAR* to voidpf */
   330    typedef Byte FAR   *voidpf;
   331    /** typedef Byte* to voidp */
   332    typedef Byte       *voidp;
   333 #endif
   334 
   335 #if 0           /* HAVE_UNISTD_H -- this line is updated by ./configure */
   336 #  include <sys/types.h> /* for off_t */
   337 #  include <unistd.h>    /* for SEEK_* and off_t */
   338 #  ifdef VMS
   339 #    include <unixio.h>   /* for off_t */
   340 #  endif
   341 #  define z_off_t off_t
   342 #endif
   343 #ifndef SEEK_SET
   344 /** Seek from beginning of file.  */
   345 #  define SEEK_SET        0       
   346 /** Seek from current position.  */
   347 #  define SEEK_CUR        1       
   348 /** Set file pointer to EOF plus "offset" */
   349 #  define SEEK_END        2       
   350 #endif
   351 #ifndef z_off_t
   352 /** define z_off_t as long */
   353 #  define z_off_t long
   354 #endif
   355 
   356 #if defined(__OS400__)
   357 #  define NO_vsnprintf
   358 #endif
   359 
   360 #if defined(__MVS__)
   361 #  define NO_vsnprintf
   362 #  ifdef FAR
   363 #    undef FAR
   364 #  endif
   365 #endif
   366 
   367 /* MVS linker does not support external names larger than 8 bytes */
   368 #if defined(__MVS__)
   369 #   pragma map(deflateInit_,"DEIN")
   370 #   pragma map(deflateInit2_,"DEIN2")
   371 #   pragma map(deflateEnd,"DEEND")
   372 #   pragma map(deflateBound,"DEBND")
   373 #   pragma map(inflateInit_,"ININ")
   374 #   pragma map(inflateInit2_,"ININ2")
   375 #   pragma map(inflateEnd,"INEND")
   376 #   pragma map(inflateSync,"INSY")
   377 #   pragma map(inflateSetDictionary,"INSEDI")
   378 #   pragma map(compressBound,"CMBND")
   379 #   pragma map(inflate_table,"INTABL")
   380 #   pragma map(inflate_fast,"INFA")
   381 #   pragma map(inflate_copyright,"INCOPY")
   382 #endif
   383 
   384 #endif /* _ZCONF_H */