zutil.h
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:7k
源码类别:

Windows CE

开发平台:

C/C++

  1. /* zutil.h -- internal interface and configuration of the compression library
  2.  * Copyright (C) 1995-2003 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. /* @(#) $Id$ */
  10. #ifndef ZUTIL_H
  11. #define ZUTIL_H
  12. #define ZLIB_INTERNAL
  13. #include "zlib.h"
  14. #ifdef STDC
  15. #  include <stddef.h>
  16. #  include <string.h>
  17. #  include <stdlib.h>
  18. #endif
  19. /*
  20. #ifdef NO_ERRNO_H
  21.     extern int errno;
  22. #else
  23. #   include <errno.h>
  24. #endif
  25. */
  26. #ifndef local
  27. #  define local static
  28. #endif
  29. /* compile with -Dlocal if your debugger can't find static symbols */
  30. typedef unsigned char  uch;
  31. typedef uch FAR uchf;
  32. typedef unsigned short ush;
  33. typedef ush FAR ushf;
  34. typedef unsigned long  ulg;
  35. extern const char * const z_errmsg[10]; /* indexed by 2-zlib_error */
  36. /* (size given to avoid silly warnings with Visual C++) */
  37. #define ERR_MSG(err) z_errmsg[Z_NEED_DICT-(err)]
  38. #define ERR_RETURN(strm,err) 
  39.   return (strm->msg = (char*)ERR_MSG(err), (err))
  40. /* To be used only when the state is known to be valid */
  41.         /* common constants */
  42. #ifndef DEF_WBITS
  43. #  define DEF_WBITS MAX_WBITS
  44. #endif
  45. /* default windowBits for decompression. MAX_WBITS is for compression only */
  46. #if MAX_MEM_LEVEL >= 8
  47. #  define DEF_MEM_LEVEL 8
  48. #else
  49. #  define DEF_MEM_LEVEL  MAX_MEM_LEVEL
  50. #endif
  51. /* default memLevel */
  52. #define STORED_BLOCK 0
  53. #define STATIC_TREES 1
  54. #define DYN_TREES    2
  55. /* The three kinds of block type */
  56. #define MIN_MATCH  3
  57. #define MAX_MATCH  258
  58. /* The minimum and maximum match lengths */
  59. #define PRESET_DICT 0x20 /* preset dictionary flag in zlib header */
  60.         /* target dependencies */
  61. #if defined(MSDOS) || (defined(WINDOWS) && !defined(WIN32))
  62. #  define OS_CODE  0x00
  63. #  if defined(__TURBOC__) || defined(__BORLANDC__)
  64. #    if(__STDC__ == 1) && (defined(__LARGE__) || defined(__COMPACT__))
  65.        /* Allow compilation with ANSI keywords only enabled */
  66.        void _Cdecl farfree( void *block );
  67.        void *_Cdecl farmalloc( unsigned long nbytes );
  68. #    else
  69. #      include <alloc.h>
  70. #    endif
  71. #  else /* MSC or DJGPP */
  72. #    include <malloc.h>
  73. #  endif
  74. #endif
  75. #ifdef AMIGA
  76. #  define OS_CODE  0x01
  77. #endif
  78. #if defined(VAXC) || defined(VMS)
  79. #  define OS_CODE  0x02
  80. #  define F_OPEN(name, mode) 
  81.      fopen((name), (mode), "mbc=60", "ctx=stm", "rfm=fix", "mrs=512")
  82. #endif
  83. #if defined(ATARI) || defined(atarist)
  84. #  define OS_CODE  0x05
  85. #endif
  86. #ifdef OS2
  87. #  define OS_CODE  0x06
  88. #endif
  89. #if defined(MACOS) || defined(TARGET_OS_MAC)
  90. #  define OS_CODE  0x07
  91. #  if defined(__MWERKS__) && __dest_os != __be_os && __dest_os != __win32_os
  92. #    include <unix.h> /* for fdopen */
  93. #  else
  94. #    ifndef fdopen
  95. #      define fdopen(fd,mode) NULL /* No fdopen() */
  96. #    endif
  97. #  endif
  98. #endif
  99. #ifdef TOPS20
  100. #  define OS_CODE  0x0a
  101. #endif
  102. #ifdef WIN32
  103. #  ifndef __CYGWIN__  /* Cygwin is Unix, not Win32 */
  104. #    define OS_CODE  0x0b
  105. #  endif
  106. #endif
  107. #ifdef __50SERIES /* Prime/PRIMOS */
  108. #  define OS_CODE  0x0f
  109. #endif
  110. #if defined(_BEOS_) || defined(RISCOS)
  111. #  define fdopen(fd,mode) NULL /* No fdopen() */
  112. #endif
  113. #if (defined(_MSC_VER) && (_MSC_VER > 600))
  114. #  if defined(_WIN32_WCE)
  115. #    define fdopen(fd,mode) NULL /* No fdopen() */
  116. #    ifndef _PTRDIFF_T_DEFINED
  117.        typedef int ptrdiff_t;
  118. #      define _PTRDIFF_T_DEFINED
  119. #    endif
  120. #  else
  121. #    define fdopen(fd,type)  _fdopen(fd,type)
  122. #  endif
  123. #endif
  124.         /* common defaults */
  125. #ifndef OS_CODE
  126. #  define OS_CODE  0x03  /* assume Unix */
  127. #endif
  128. #ifndef F_OPEN
  129. #  define F_OPEN(name, mode) fopen((name), (mode))
  130. #endif
  131.          /* functions */
  132. #if defined(STDC99) || (defined(__TURBOC__) && __TURBOC__ >= 0x550)
  133. #  ifndef HAVE_VSNPRINTF
  134. #    define HAVE_VSNPRINTF
  135. #  endif
  136. #endif
  137. #if defined(__CYGWIN__)
  138. #  ifndef HAVE_VSNPRINTF
  139. #    define HAVE_VSNPRINTF
  140. #  endif
  141. #endif
  142. #ifndef HAVE_VSNPRINTF
  143. #  ifdef MSDOS
  144.      /* vsnprintf may exist on some MS-DOS compilers (DJGPP?),
  145.         but for now we just assume it doesn't. */
  146. #    define NO_vsnprintf
  147. #  endif
  148. #  ifdef __TURBOC__
  149. #    define NO_vsnprintf
  150. #  endif
  151. #  ifdef WIN32
  152.      /* In Win32, vsnprintf is available as the "non-ANSI" _vsnprintf. */
  153. #    if !defined(vsnprintf) && !defined(NO_vsnprintf)
  154. #      define vsnprintf _vsnprintf
  155. #    endif
  156. #  endif
  157. #  ifdef __SASC
  158. #    define NO_vsnprintf
  159. #  endif
  160. #endif
  161. #ifdef HAVE_STRERROR
  162.    extern char *strerror OF((int));
  163. #  define zstrerror(errnum) strerror(errnum)
  164. #else
  165. #  define zstrerror(errnum) ""
  166. #endif
  167. #if defined(pyr)
  168. #  define NO_MEMCPY
  169. #endif
  170. #if defined(SMALL_MEDIUM) && !defined(_MSC_VER) && !defined(__SC__)
  171.  /* Use our own functions for small and medium model with MSC <= 5.0.
  172.   * You may have to use the same strategy for Borland C (untested).
  173.   * The __SC__ check is for Symantec.
  174.   */
  175. #  define NO_MEMCPY
  176. #endif
  177. #if defined(STDC) && !defined(HAVE_MEMCPY) && !defined(NO_MEMCPY)
  178. #  define HAVE_MEMCPY
  179. #endif
  180. #ifdef HAVE_MEMCPY
  181. #  ifdef SMALL_MEDIUM /* MSDOS small or medium model */
  182. #    define zmemcpy _fmemcpy
  183. #    define zmemcmp _fmemcmp
  184. #    define zmemzero(dest, len) _fmemset(dest, 0, len)
  185. #  else
  186. #    define zmemcpy memcpy
  187. #    define zmemcmp memcmp
  188. #    define zmemzero(dest, len) memset(dest, 0, len)
  189. #  endif
  190. #else
  191.    extern void zmemcpy  OF((Bytef* dest, const Bytef* source, uInt len));
  192.    extern int  zmemcmp  OF((const Bytef* s1, const Bytef* s2, uInt len));
  193.    extern void zmemzero OF((Bytef* dest, uInt len));
  194. #endif
  195. /* Diagnostic functions */
  196. #ifdef DEBUG_
  197. #  include <stdio.h>
  198.    extern int z_verbose;
  199.    extern void z_error    OF((char *m));
  200. #  define Assert(cond,msg) {if(!(cond)) z_error(msg);}
  201. #  define Trace(x) {if (z_verbose>=0) fprintf x ;}
  202. #  define Tracev(x) {if (z_verbose>0) fprintf x ;}
  203. #  define Tracevv(x) {if (z_verbose>1) fprintf x ;}
  204. #  define Tracec(c,x) {if (z_verbose>0 && (c)) fprintf x ;}
  205. #  define Tracecv(c,x) {if (z_verbose>1 && (c)) fprintf x ;}
  206. #else
  207. #  define Assert(cond,msg)
  208. #  define Trace(x)
  209. #  define Tracev(x)
  210. #  define Tracevv(x)
  211. #  define Tracec(c,x)
  212. #  define Tracecv(c,x)
  213. #endif
  214. voidpf zcalloc OF((voidpf opaque, unsigned items, unsigned size));
  215. void   zcfree  OF((voidpf opaque, voidpf ptr));
  216. #define ZALLOC(strm, items, size) 
  217.            (*((strm)->zalloc))((strm)->opaque, (items), (size))
  218. #define ZFREE(strm, addr)  (*((strm)->zfree))((strm)->opaque, (voidpf)(addr))
  219. #define TRY_FREE(s, p) {if (p) ZFREE(s, p);}
  220. #endif /* ZUTIL_H */