zconf.h
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:8k
源码类别:

生物技术

开发平台:

C/C++

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