pvpgn_zutil.h
上传用户:tany51
上传日期:2013-06-12
资源大小:1397k
文件大小:6k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* zutil.h -- internal interface and configuration of the compression library
  2.  * Copyright (C) 1995-2002 Jean-loup Gailly.
  3.  * For conditions of distribution and use, see copyright notice in zlib.h
  4.  */
  5. /* WARNING: this file should *not* be used by applications. It is
  6.    part of the implementation of the compression library and is
  7.    subject to change. Applications should only use zlib.h.
  8.  */
  9. #ifndef _Z_UTIL_H
  10. #define _Z_UTIL_H
  11. #include "common/setup_before.h"
  12. #include "zlib/pvpgn_zlib.h"
  13. #ifdef HAVE_STDDEF_H
  14. # include <stddef.h>
  15. #else
  16. # ifndef NULL
  17. #  define NULL ((void *)0)
  18. # endif
  19. #endif
  20. #ifdef HAVE_STRING_H
  21. # include <string.h>
  22. #else
  23. # ifdef HAVE_STRINGS_H
  24. #  include <strings.h>
  25. # endif
  26. #endif
  27. #ifdef STDC_HEADERS
  28. # include <stdlib.h>
  29. #else
  30. # ifdef HAVE_MALLOC_H
  31. #  include <malloc.h>
  32. # endif
  33. #endif
  34. #ifdef NO_ERRNO_H
  35.     extern int errno;
  36. #else
  37. #   include <errno.h>
  38. #endif
  39. #ifndef local
  40. #  define local static
  41. #endif
  42. /* compile with -Dlocal if your debugger can't find static symbols */
  43. typedef unsigned char  uch;
  44. typedef uch FAR uchf;
  45. typedef unsigned short ush;
  46. typedef ush FAR ushf;
  47. typedef unsigned long  ulg;
  48. extern const char *pvpgn_z_errmsg[10]; /* indexed by 2-zlib_error */
  49. /* (size given to avoid silly warnings with Visual C++) */
  50. #define ERR_MSG(err) pvpgn_z_errmsg[Z_NEED_DICT-(err)]
  51. #define ERR_RETURN(strm,err) 
  52.   return (strm->msg = (char*)ERR_MSG(err), (err))
  53. /* To be used only when the state is known to be valid */
  54.         /* common constants */
  55. #ifndef DEF_WBITS
  56. #  define DEF_WBITS MAX_WBITS
  57. #endif
  58. /* default windowBits for decompression. MAX_WBITS is for compression only */
  59. #if MAX_MEM_LEVEL >= 8
  60. #  define DEF_MEM_LEVEL 8
  61. #else
  62. #  define DEF_MEM_LEVEL  MAX_MEM_LEVEL
  63. #endif
  64. /* default memLevel */
  65. #define STORED_BLOCK 0
  66. #define STATIC_TREES 1
  67. #define DYN_TREES    2
  68. /* The three kinds of block type */
  69. #define MIN_MATCH  3
  70. #define MAX_MATCH  258
  71. /* The minimum and maximum match lengths */
  72. #define PRESET_DICT 0x20 /* preset dictionary flag in zlib header */
  73.         /* target dependencies */
  74. #ifdef MSDOS
  75. #  define OS_CODE  0x00
  76. #  if defined(__TURBOC__) || defined(__BORLANDC__)
  77. #    if(__STDC__ == 1) && (defined(__LARGE__) || defined(__COMPACT__))
  78.        /* Allow compilation with ANSI keywords only enabled */
  79.        void _Cdecl farfree( void *block );
  80.        void *_Cdecl farmalloc( unsigned long nbytes );
  81. #    else
  82. #     include <alloc.h>
  83. #    endif
  84. #  else /* MSC or DJGPP */
  85. #    include <malloc.h>
  86. #  endif
  87. #endif
  88. #ifdef OS2
  89. #  define OS_CODE  0x06
  90. #endif
  91. #ifdef WIN32 /* Window 95 & Windows NT */
  92. #  define OS_CODE  0x0b
  93. #endif
  94. #if defined(VAXC) || defined(VMS)
  95. #  define OS_CODE  0x02
  96. #  define F_OPEN(name, mode) 
  97.      fopen((name), (mode), "mbc=60", "ctx=stm", "rfm=fix", "mrs=512")
  98. #endif
  99. #ifdef AMIGA
  100. #  define OS_CODE  0x01
  101. #endif
  102. #if defined(ATARI) || defined(atarist)
  103. #  define OS_CODE  0x05
  104. #endif
  105. #if defined(MACOS) || defined(TARGET_OS_MAC)
  106. #  define OS_CODE  0x07
  107. #  if defined(__MWERKS__) && __dest_os != __be_os && __dest_os != __win32_os
  108. #    include <unix.h> /* for fdopen */
  109. #  else
  110. #    ifndef fdopen
  111. #      define fdopen(fd,mode) NULL /* No fdopen() */
  112. #    endif
  113. #  endif
  114. #endif
  115. #ifdef __50SERIES /* Prime/PRIMOS */
  116. #  define OS_CODE  0x0F
  117. #endif
  118. #ifdef TOPS20
  119. #  define OS_CODE  0x0a
  120. #endif
  121. #if defined(_BEOS_) || defined(RISCOS)
  122. #  define fdopen(fd,mode) NULL /* No fdopen() */
  123. #endif
  124. #if (defined(_MSC_VER) && (_MSC_VER > 600))
  125. #  define fdopen(fd,type)  _fdopen(fd,type)
  126. #endif
  127.         /* Common defaults */
  128. #ifndef OS_CODE
  129. #  define OS_CODE  0x03  /* assume Unix */
  130. #endif
  131. #ifndef F_OPEN
  132. #  define F_OPEN(name, mode) fopen((name), (mode))
  133. #endif
  134.          /* functions */
  135. #ifdef HAVE_STRERROR
  136.    extern char *strerror OF((int));
  137. #  define zstrerror(errnum) strerror(errnum)
  138. #else
  139. #  define zstrerror(errnum) ""
  140. #endif
  141. #if defined(pyr)
  142. #  define NO_MEMCPY
  143. #endif
  144. #if defined(SMALL_MEDIUM) && !defined(_MSC_VER) && !defined(__SC__)
  145.  /* Use our own functions for small and medium model with MSC <= 5.0.
  146.   * You may have to use the same strategy for Borland C (untested).
  147.   * The __SC__ check is for Symantec.
  148.   */
  149. #  define NO_MEMCPY
  150. #endif
  151. #if defined(STDC) && !defined(HAVE_MEMCPY) && !defined(NO_MEMCPY)
  152. #  define HAVE_MEMCPY
  153. #endif
  154. #ifdef HAVE_MEMCPY
  155. #  ifdef SMALL_MEDIUM /* MSDOS small or medium model */
  156. #    define zmemcpy _fmemcpy
  157. #    define zmemcmp _fmemcmp
  158. #    define zmemzero(dest, len) _fmemset(dest, 0, len)
  159. #  else
  160. #    define zmemcpy memcpy
  161. #    define zmemcmp memcmp
  162. #    define zmemzero(dest, len) memset(dest, 0, len)
  163. #  endif
  164. #else
  165.    extern void pvpgn_zmemcpy  OF((Bytef* dest, const Bytef* source, uInt len));
  166.    extern int  pvpgn_zmemcmp  OF((const Bytef* s1, const Bytef* s2, uInt len));
  167.    extern void pvpgn_zmemzero OF((Bytef* dest, uInt len));
  168. #endif
  169. /* Diagnostic functions */
  170. #ifdef DEBUG
  171. #  include <stdio.h>
  172.    extern int pvpgn_z_verbose;
  173.    extern void pvpgn_z_error    OF((char *m));
  174. #  define Assert(cond,msg) {if(!(cond)) z_error(msg);}
  175. #  define Trace(x) {if (z_verbose>=0) fprintf x ;}
  176. #  define Tracev(x) {if (z_verbose>0) fprintf x ;}
  177. #  define Tracevv(x) {if (z_verbose>1) fprintf x ;}
  178. #  define Tracec(c,x) {if (z_verbose>0 && (c)) fprintf x ;}
  179. #  define Tracecv(c,x) {if (z_verbose>1 && (c)) fprintf x ;}
  180. #else
  181. #  define Assert(cond,msg)
  182. #  define Trace(x)
  183. #  define Tracev(x)
  184. #  define Tracevv(x)
  185. #  define Tracec(c,x)
  186. #  define Tracecv(c,x)
  187. #endif
  188. typedef uLong (ZEXPORT *check_func) OF((uLong check, const Bytef *buf,
  189.        uInt len));
  190. voidpf pvpgn_zcalloc OF((voidpf opaque, unsigned items, unsigned size));
  191. void   pvpgn_zcfree  OF((voidpf opaque, voidpf ptr));
  192. #define ZALLOC(strm, items, size) 
  193.            (*((strm)->zalloc))((strm)->opaque, (items), (size))
  194. #define ZFREE(strm, addr)  (*((strm)->zfree))((strm)->opaque, (voidpf)(addr))
  195. #define TRY_FREE(s, p) {if (p) ZFREE(s, p);}
  196. #endif /* _Z_UTIL_H */