ZCONF.H
上传用户:bjghjy
上传日期:2007-01-07
资源大小:379k
文件大小:7k
源码类别:

金融证券系统

开发平台:

Visual C++

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