zutil.h
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:6k
源码类别:

Symbian

开发平台:

C/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. /* @(#) $Id: zutil.h,v 1.4 2003/06/19 00:38:31 alanli Exp $ */
  10. #ifndef _Z_UTIL_H
  11. #define _Z_UTIL_H
  12. #include "zlib.h"
  13. /* Helix porting change
  14.  * from #include <stddef.h>
  15.  * ...
  16.  */
  17. #ifdef STDC
  18. #  include "hlxclib/stddef.h"
  19. #  include "hlxclib/string.h"
  20. #endif
  21. #ifdef NO_ERRNO_H
  22.     extern int errno;
  23. #else
  24. #   include "hlxclib/errno.h"
  25. #endif
  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 *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. #ifdef MSDOS
  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 OS2
  76. #  define OS_CODE  0x06
  77. #endif
  78. #ifdef WIN32 /* Window 95 & Windows NT */
  79. #  define OS_CODE  0x0b
  80. #endif
  81. #if defined(VAXC) || defined(VMS)
  82. #  define OS_CODE  0x02
  83. #  define F_OPEN(name, mode) 
  84.      fopen((name), (mode), "mbc=60", "ctx=stm", "rfm=fix", "mrs=512")
  85. #endif
  86. #ifdef AMIGA
  87. #  define OS_CODE  0x01
  88. #endif
  89. #if defined(ATARI) || defined(atarist)
  90. #  define OS_CODE  0x05
  91. #endif
  92. #if defined(MACOS) || defined(TARGET_OS_MAC)
  93. #  define OS_CODE  0x07
  94. #  if defined(__MWERKS__) && __dest_os != __be_os && __dest_os != __win32_os
  95. #    include <unix.h> /* for fdopen */
  96. #  else
  97. #    ifndef fdopen
  98. #      define fdopen(fd,mode) NULL /* No fdopen() */
  99. #    endif
  100. #  endif
  101. #endif
  102. #ifdef __50SERIES /* Prime/PRIMOS */
  103. #  define OS_CODE  0x0F
  104. #endif
  105. #ifdef TOPS20
  106. #  define OS_CODE  0x0a
  107. #endif
  108. #if defined(_BEOS_) || defined(RISCOS)
  109. #  define fdopen(fd,mode) NULL /* No fdopen() */
  110. #endif
  111. #if (defined(_MSC_VER) && (_MSC_VER > 600))
  112. #  define fdopen(fd,type)  _fdopen(fd,type)
  113. #endif
  114.         /* Common defaults */
  115. #ifndef OS_CODE
  116. #  define OS_CODE  0x03  /* assume Unix */
  117. #endif
  118. #ifndef F_OPEN
  119. #  define F_OPEN(name, mode) fopen((name), (mode))
  120. #endif
  121.          /* functions */
  122. #ifdef HAVE_STRERROR
  123.    extern char *strerror OF((int));
  124. #  define zstrerror(errnum) strerror(errnum)
  125. #else
  126. #  define zstrerror(errnum) ""
  127. #endif
  128. #if defined(pyr)
  129. #  define NO_MEMCPY
  130. #endif
  131. #if defined(SMALL_MEDIUM) && !defined(_MSC_VER) && !defined(__SC__)
  132.  /* Use our own functions for small and medium model with MSC <= 5.0.
  133.   * You may have to use the same strategy for Borland C (untested).
  134.   * The __SC__ check is for Symantec.
  135.   */
  136. #  define NO_MEMCPY
  137. #endif
  138. #if defined(STDC) && !defined(HAVE_MEMCPY) && !defined(NO_MEMCPY)
  139. #  define HAVE_MEMCPY
  140. #endif
  141. #ifdef HAVE_MEMCPY
  142. #  ifdef SMALL_MEDIUM /* MSDOS small or medium model */
  143. #    define zmemcpy _fmemcpy
  144. #    define zmemcmp _fmemcmp
  145. #    define zmemzero(dest, len) _fmemset(dest, 0, len)
  146. #  else
  147. #    define zmemcpy memcpy
  148. #    define zmemcmp memcmp
  149. #    define zmemzero(dest, len) memset(dest, 0, len)
  150. #  endif
  151. #else
  152.    extern void zmemcpy  OF((Bytef* dest, const Bytef* source, uInt len));
  153.    extern int  zmemcmp  OF((const Bytef* s1, const Bytef* s2, uInt len));
  154.    extern void zmemzero OF((Bytef* dest, uInt len));
  155. #endif
  156. /* Diagnostic functions */
  157. /* Helix porting change 
  158.  * from #include <stdio.h>'
  159.  */
  160. #ifdef DEBUG
  161. #  include "hlxclib/stdio.h"
  162.    extern int z_verbose;
  163.    extern void z_error    OF((char *m));
  164. #  define Assert(cond,msg) {if(!(cond)) z_error(msg);}
  165. #  define Trace(x) {if (z_verbose>=0) fprintf x ;}
  166. #  define Tracev(x) {if (z_verbose>0) fprintf x ;}
  167. #  define Tracevv(x) {if (z_verbose>1) fprintf x ;}
  168. #  define Tracec(c,x) {if (z_verbose>0 && (c)) fprintf x ;}
  169. #  define Tracecv(c,x) {if (z_verbose>1 && (c)) fprintf x ;}
  170. #else
  171. #  define Assert(cond,msg)
  172. #  define Trace(x)
  173. #  define Tracev(x)
  174. #  define Tracevv(x)
  175. #  define Tracec(c,x)
  176. #  define Tracecv(c,x)
  177. #endif
  178. typedef uLong (ZEXPORT *check_func) OF((uLong check, const Bytef *buf,
  179.        uInt len));
  180. voidpf zcalloc OF((voidpf opaque, unsigned items, unsigned size));
  181. void   zcfree  OF((voidpf opaque, voidpf ptr));
  182. #define ZALLOC(strm, items, size) 
  183.            (*((strm)->zalloc))((strm)->opaque, (items), (size))
  184. #define ZFREE(strm, addr)  (*((strm)->zfree))((strm)->opaque, (voidpf)(addr))
  185. #define TRY_FREE(s, p) {if (p) ZFREE(s, p);}
  186. #endif /* _Z_UTIL_H */