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