os/ossrv/compressionlibs/ziplib/test/oldezlib/inc/OldEZConf.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/* zconf.h -- configuration of the zlib compression library
sl@0
     2
 * Copyright (C) 1995-1998 Jean-loup Gailly.
sl@0
     3
 * For conditions of distribution and use, see copyright notice in zlib.h 
sl@0
     4
 */
sl@0
     5
sl@0
     6
/**
sl@0
     7
@file
sl@0
     8
Contains macro definitions for ezlib library (included from EZlib.h)
sl@0
     9
@internalAll
sl@0
    10
*/
sl@0
    11
sl@0
    12
/* @(#) $Id$ */
sl@0
    13
sl@0
    14
#ifndef _EZLIB_ZCONF_H
sl@0
    15
#define _EZLIB_ZCONF_H
sl@0
    16
sl@0
    17
/*
sl@0
    18
 * If you *really* need a unique prefix for all types and library functions,
sl@0
    19
 * compile with -DZ_PREFIX. The "standard" zlib should be compiled without it.
sl@0
    20
 */
sl@0
    21
#ifdef Z_PREFIX
sl@0
    22
#  define deflateInit_	z_deflateInit_
sl@0
    23
#  define deflate	z_deflate
sl@0
    24
#  define deflateEnd	z_deflateEnd
sl@0
    25
#  define inflateInit_ 	z_inflateInit_
sl@0
    26
#  define inflate	z_inflate
sl@0
    27
#  define inflateEnd	z_inflateEnd
sl@0
    28
#  define deflateInit2_	z_deflateInit2_
sl@0
    29
#  define deflateSetDictionary z_deflateSetDictionary
sl@0
    30
#  define deflateCopy	z_deflateCopy
sl@0
    31
#  define deflateReset	z_deflateReset
sl@0
    32
#  define deflateParams	z_deflateParams
sl@0
    33
#  define inflateInit2_	z_inflateInit2_
sl@0
    34
#  define inflateSetDictionary z_inflateSetDictionary
sl@0
    35
#  define inflateSync	z_inflateSync
sl@0
    36
#  define inflateSyncPoint z_inflateSyncPoint
sl@0
    37
#  define inflateReset	z_inflateReset
sl@0
    38
#  define compress	z_compress
sl@0
    39
#  define compress2	z_compress2
sl@0
    40
#  define uncompress	z_uncompress
sl@0
    41
#  define adler32	z_adler32
sl@0
    42
#  define crc32		z_crc32
sl@0
    43
#  define get_crc_table z_get_crc_table
sl@0
    44
sl@0
    45
#  define Byte		z_Byte
sl@0
    46
#  define uInt		z_uInt
sl@0
    47
#  define uLong		z_uLong
sl@0
    48
#  define Bytef	        z_Bytef
sl@0
    49
#  define charf		z_charf
sl@0
    50
#  define intf		z_intf
sl@0
    51
#  define uIntf		z_uIntf
sl@0
    52
#  define uLongf	z_uLongf
sl@0
    53
#  define voidpf	z_voidpf
sl@0
    54
#  define voidp		z_voidp
sl@0
    55
#endif
sl@0
    56
sl@0
    57
#if (defined(_WIN32) || defined(__WIN32__)) && !defined(WIN32)
sl@0
    58
#  define WIN32
sl@0
    59
#endif
sl@0
    60
#if defined(__GNUC__) || defined(WIN32) || defined(__386__) || defined(i386)
sl@0
    61
#  ifndef __32BIT__
sl@0
    62
#    define __32BIT__
sl@0
    63
#  endif
sl@0
    64
#endif
sl@0
    65
#if defined(__MSDOS__) && !defined(MSDOS)
sl@0
    66
#  define MSDOS
sl@0
    67
#endif
sl@0
    68
sl@0
    69
/*
sl@0
    70
 * Compile with -DMAXSEG_64K if the alloc function cannot allocate more
sl@0
    71
 * than 64k bytes at a time (needed on systems with 16-bit int).
sl@0
    72
 */
sl@0
    73
#if defined(MSDOS) && !defined(__32BIT__)
sl@0
    74
#  define MAXSEG_64K
sl@0
    75
#endif
sl@0
    76
#ifdef MSDOS
sl@0
    77
#  define UNALIGNED_OK
sl@0
    78
#endif
sl@0
    79
sl@0
    80
#if (defined(MSDOS) || defined(_WINDOWS) || defined(WIN32))  && !defined(STDC)
sl@0
    81
#  define STDC
sl@0
    82
#endif
sl@0
    83
#if defined(__STDC__) || defined(__cplusplus) || defined(__OS2__)
sl@0
    84
#  ifndef STDC
sl@0
    85
#    define STDC
sl@0
    86
#  endif
sl@0
    87
#endif
sl@0
    88
sl@0
    89
#ifndef STDC
sl@0
    90
#  ifndef const /* cannot use !defined(STDC) && !defined(const) on Mac */
sl@0
    91
#    define const
sl@0
    92
#  endif
sl@0
    93
#endif
sl@0
    94
sl@0
    95
/* Some Mac compilers merge all .h files incorrectly: */
sl@0
    96
#if defined(__MWERKS__) || defined(applec) ||defined(THINK_C) ||defined(__SC__)
sl@0
    97
#  define NO_DUMMY_DECL
sl@0
    98
#endif
sl@0
    99
sl@0
   100
/* Old Borland C incorrectly complains about missing returns: */
sl@0
   101
#if defined(__BORLANDC__) && (__BORLANDC__ < 0x500)
sl@0
   102
#  define NEED_DUMMY_RETURN
sl@0
   103
#endif
sl@0
   104
sl@0
   105
sl@0
   106
/* Maximum value for memLevel in deflateInit2 */
sl@0
   107
#ifndef MAX_MEM_LEVEL
sl@0
   108
#  ifdef MAXSEG_64K
sl@0
   109
#    define MAX_MEM_LEVEL 8
sl@0
   110
#  else
sl@0
   111
#    define MAX_MEM_LEVEL 9
sl@0
   112
#  endif
sl@0
   113
#endif
sl@0
   114
sl@0
   115
/** 
sl@0
   116
Maximum value for windowBits in deflateInit2 and inflateInit2.
sl@0
   117
WARNING: reducing MAX_WBITS makes minigzip unable to extract .gz files
sl@0
   118
created by gzip. (Files created by minigzip can still be extracted by
sl@0
   119
gzip.)
sl@0
   120
@publishedPartner
sl@0
   121
@externallyDefinedApi  
sl@0
   122
*/
sl@0
   123
#ifndef MAX_WBITS
sl@0
   124
#  define MAX_WBITS   15 /* 32K LZ77 window */
sl@0
   125
#endif
sl@0
   126
sl@0
   127
/* The memory requirements for deflate are (in bytes):
sl@0
   128
            (1 << (windowBits+2)) +  (1 << (memLevel+9))
sl@0
   129
 that is: 128K for windowBits=15  +  128K for memLevel = 8  (default values)
sl@0
   130
 plus a few kilobytes for small objects. For example, if you want to reduce
sl@0
   131
 the default memory requirements from 256K to 128K, compile with
sl@0
   132
     make CFLAGS="-O -DMAX_WBITS=14 -DMAX_MEM_LEVEL=7"
sl@0
   133
 Of course this will generally degrade compression (there's no free lunch).
sl@0
   134
sl@0
   135
   The memory requirements for inflate are (in bytes) 1 << windowBits
sl@0
   136
 that is, 32K for windowBits=15 (default value) plus a few kilobytes
sl@0
   137
 for small objects.
sl@0
   138
*/
sl@0
   139
sl@0
   140
                        /* Type declarations */
sl@0
   141
sl@0
   142
#ifndef OF /* function prototypes */
sl@0
   143
#  ifdef STDC
sl@0
   144
#    define OF(args)  args
sl@0
   145
#  else
sl@0
   146
#    define OF(args)  ()
sl@0
   147
#  endif
sl@0
   148
#endif
sl@0
   149
sl@0
   150
/* The following definitions for FAR are needed only for MSDOS mixed
sl@0
   151
 * model programming (small or medium model with some far allocations).
sl@0
   152
 * This was tested only with MSC; for other MSDOS compilers you may have
sl@0
   153
 * to define NO_MEMCPY in zutil.h.  If you don't need the mixed model,
sl@0
   154
 * just define FAR to be empty.
sl@0
   155
 */
sl@0
   156
#if (defined(M_I86SM) || defined(M_I86MM)) && !defined(__32BIT__)
sl@0
   157
   /* MSC small or medium model */
sl@0
   158
#  define SMALL_MEDIUM
sl@0
   159
#  ifdef _MSC_VER
sl@0
   160
#    define FAR _far
sl@0
   161
#  else
sl@0
   162
#    define FAR far
sl@0
   163
#  endif
sl@0
   164
#endif
sl@0
   165
#if defined(__BORLANDC__) && (defined(__SMALL__) || defined(__MEDIUM__))
sl@0
   166
#  ifndef __32BIT__
sl@0
   167
#    define SMALL_MEDIUM
sl@0
   168
#    define FAR _far
sl@0
   169
#  endif
sl@0
   170
#endif
sl@0
   171
sl@0
   172
/* Compile with -DZLIB_DLL for Windows DLL support */
sl@0
   173
#if defined(ZLIB_DLL)
sl@0
   174
#  if defined(_WINDOWS) || defined(WINDOWS)
sl@0
   175
#    ifdef FAR
sl@0
   176
#      undef FAR
sl@0
   177
#    endif
sl@0
   178
#    include <windows.h>
sl@0
   179
#    define ZEXPORT  WINAPI
sl@0
   180
#    ifdef WIN32
sl@0
   181
#      define ZEXPORTVA  WINAPIV
sl@0
   182
#    else
sl@0
   183
#      define ZEXPORTVA  FAR _cdecl _export
sl@0
   184
#    endif
sl@0
   185
#  endif
sl@0
   186
#  if defined (__BORLANDC__)
sl@0
   187
#    if (__BORLANDC__ >= 0x0500) && defined (WIN32)
sl@0
   188
#      include <windows.h>
sl@0
   189
#      define ZEXPORT __declspec(dllexport) WINAPI
sl@0
   190
#      define ZEXPORTRVA __declspec(dllexport) WINAPIV
sl@0
   191
#    else
sl@0
   192
#      if defined (_Windows) && defined (__DLL__)
sl@0
   193
#        define ZEXPORT _export
sl@0
   194
#        define ZEXPORTVA _export
sl@0
   195
#      endif
sl@0
   196
#    endif
sl@0
   197
#  endif
sl@0
   198
#endif
sl@0
   199
sl@0
   200
#if defined (__BEOS__)
sl@0
   201
#  if defined (ZLIB_DLL)
sl@0
   202
#    define ZEXTERN extern __declspec(dllexport)
sl@0
   203
#  else
sl@0
   204
#    define ZEXTERN extern __declspec(dllimport)
sl@0
   205
#  endif
sl@0
   206
#endif
sl@0
   207
sl@0
   208
#ifndef ZEXPORT
sl@0
   209
#  define ZEXPORT
sl@0
   210
#endif
sl@0
   211
#ifndef ZEXPORTVA
sl@0
   212
#  define ZEXPORTVA
sl@0
   213
#endif
sl@0
   214
#ifndef ZEXTERN
sl@0
   215
#  ifdef __VC32__
sl@0
   216
#    define ZEXTERN extern __declspec(dllexport)
sl@0
   217
#  endif
sl@0
   218
#  ifdef __CW32__
sl@0
   219
#    define ZEXTERN extern __declspec(dllexport)
sl@0
   220
#  endif
sl@0
   221
#  ifdef __GCC32__
sl@0
   222
#    define ZEXTERN extern
sl@0
   223
#  endif
sl@0
   224
#  ifdef __GCCE__
sl@0
   225
#    define ZEXTERN extern
sl@0
   226
#  endif
sl@0
   227
#  ifdef __ARMCC__
sl@0
   228
#    define ZEXTERN extern __declspec(dllimport)
sl@0
   229
#  endif
sl@0
   230
#endif
sl@0
   231
#ifndef EXPORT_C
sl@0
   232
#  define EXPORT_C __declspec(dllexport)
sl@0
   233
#endif
sl@0
   234
sl@0
   235
#ifndef FAR
sl@0
   236
#   define FAR
sl@0
   237
#endif
sl@0
   238
sl@0
   239
#if !defined(MACOS) && !defined(TARGET_OS_MAC)
sl@0
   240
typedef unsigned char  Byte;  /* 8 bits */
sl@0
   241
#endif
sl@0
   242
typedef unsigned int   uInt;  /* 16 bits or more */
sl@0
   243
/**
sl@0
   244
32-bits or more unsigned integer for use in the zlib.h API.
sl@0
   245
@publishedPartner
sl@0
   246
@externallyDefinedApi 
sl@0
   247
*/
sl@0
   248
typedef unsigned long  uLong; /* 32 bits or more */
sl@0
   249
sl@0
   250
#ifdef SMALL_MEDIUM
sl@0
   251
   /* Borland C/C++ and some old MSC versions ignore FAR inside typedef */
sl@0
   252
#  define Bytef Byte FAR
sl@0
   253
#else
sl@0
   254
   typedef Byte  FAR Bytef;
sl@0
   255
#endif
sl@0
   256
typedef char  FAR charf;
sl@0
   257
typedef int   FAR intf;
sl@0
   258
typedef uInt  FAR uIntf;
sl@0
   259
typedef uLong FAR uLongf;
sl@0
   260
sl@0
   261
#ifdef STDC
sl@0
   262
   typedef void FAR *voidpf;
sl@0
   263
   typedef void     *voidp;
sl@0
   264
#else
sl@0
   265
   typedef Byte FAR *voidpf;
sl@0
   266
   typedef Byte     *voidp;
sl@0
   267
#endif
sl@0
   268
sl@0
   269
#ifdef HAVE_UNISTD_H
sl@0
   270
//#  include <sys/types.h> /* for off_t */
sl@0
   271
//#  include <unistd.h>    /* for SEEK_* and off_t */
sl@0
   272
#  define z_off_t  off_t
sl@0
   273
#endif
sl@0
   274
#ifndef SEEK_SET
sl@0
   275
#  define SEEK_SET        0       /* Seek from beginning of file.  */
sl@0
   276
#  define SEEK_CUR        1       /* Seek from current position.  */
sl@0
   277
#  define SEEK_END        2       /* Set file pointer to EOF plus "offset" */
sl@0
   278
#endif
sl@0
   279
#ifndef z_off_t
sl@0
   280
#  define  z_off_t long
sl@0
   281
#endif
sl@0
   282
sl@0
   283
/* MVS linker does not support external names larger than 8 bytes */
sl@0
   284
#if defined(__MVS__)
sl@0
   285
#   pragma map(deflateInit_,"DEIN")
sl@0
   286
#   pragma map(deflateInit2_,"DEIN2")
sl@0
   287
#   pragma map(deflateEnd,"DEEND")
sl@0
   288
#   pragma map(inflateInit_,"ININ")
sl@0
   289
#   pragma map(inflateInit2_,"ININ2")
sl@0
   290
#   pragma map(inflateEnd,"INEND")
sl@0
   291
#   pragma map(inflateSync,"INSY")
sl@0
   292
#   pragma map(inflateSetDictionary,"INSEDI")
sl@0
   293
#   pragma map(inflate_blocks,"INBL")
sl@0
   294
#   pragma map(inflate_blocks_new,"INBLNE")
sl@0
   295
#   pragma map(inflate_blocks_free,"INBLFR")
sl@0
   296
#   pragma map(inflate_blocks_reset,"INBLRE")
sl@0
   297
#   pragma map(inflate_codes_free,"INCOFR")
sl@0
   298
#   pragma map(inflate_codes,"INCO")
sl@0
   299
#   pragma map(inflate_fast,"INFA")
sl@0
   300
#   pragma map(inflate_flush,"INFLU")
sl@0
   301
#   pragma map(inflate_mask,"INMA")
sl@0
   302
#   pragma map(inflate_set_dictionary,"INSEDI2")
sl@0
   303
#   pragma map(inflate_copyright,"INCOPY")
sl@0
   304
#   pragma map(inflate_trees_bits,"INTRBI")
sl@0
   305
#   pragma map(inflate_trees_dynamic,"INTRDY")
sl@0
   306
#   pragma map(inflate_trees_fixed,"INTRFI")
sl@0
   307
#   pragma map(inflate_trees_free,"INTRFR")
sl@0
   308
#endif
sl@0
   309
sl@0
   310
#endif /* _EZLIB_ZCONF_H */