Zconf.h
上传用户:sz83729876
上传日期:2013-03-07
资源大小:4140k
文件大小:8k
源码类别:

OpenGL

开发平台:

Windows_Unix

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