home *** CD-ROM | disk | FTP | other *** search
/ PC World Plus! (NZ) 2001 June / HDC50.iso / Info / Extras / Zlib / Src / ZUTIL.H < prev   
C/C++ Source or Header  |  1996-12-09  |  5KB  |  205 lines

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