zconf.h
上传用户:zlh9724
上传日期:2007-01-04
资源大小:1991k
文件大小:3k
源码类别:

浏览器

开发平台:

Unix_Linux

  1. /* zconf.h -- configuration of the zlib compression library
  2.  * Copyright (C) 1995 Jean-loup Gailly.
  3.  * For conditions of distribution and use, see copyright notice in zlib.h 
  4.  */
  5. /* $Id: zconf.h,v 1.12 1995/05/03 17:27:12 jloup Exp $ */
  6. #ifndef _ZCONF_H
  7. #define _ZCONF_H
  8. /*
  9.      The library does not install any signal handler. It is recommended to
  10.   add at least a handler for SIGSEGV when decompressing; the library checks
  11.   the consistency of the input data whenever possible but may go nuts
  12.   for some forms of corrupted input.
  13.  */
  14. /*
  15.  * Compile with -DMAXSEG_64K if the alloc function cannot allocate more
  16.  * than 64k bytes at a time (needed on systems with 16-bit int).
  17.  */
  18. #if defined(_GNUC__) && !defined(__32BIT__)
  19. #  define __32BIT__
  20. #endif
  21. #if defined(__MSDOS__) && !defined(MSDOS)
  22. #  define MSDOS
  23. #endif
  24. #if defined(MSDOS) && !defined(__32BIT__)
  25. #  define MAXSEG_64K
  26. #endif
  27. #ifdef MSDOS
  28. #  define UNALIGNED_OK
  29. #endif
  30. #ifndef STDC
  31. #  if defined(MSDOS) || defined(__STDC__) || defined(__cplusplus)
  32. #    define STDC
  33. #  endif
  34. #endif
  35. #ifndef STDC
  36. #  ifndef const
  37. #    define const
  38. #  endif
  39. #endif
  40. #ifdef __MWERKS__ /* Metrowerks CodeWarrior declares fileno() in unix.h */
  41. #  include <unix.h>
  42. #endif
  43. /* Maximum value for memLevel in deflateInit2 */
  44. #ifndef MAX_MEM_LEVEL
  45. #  ifdef MAXSEG_64K
  46. #    define MAX_MEM_LEVEL 8
  47. #  else
  48. #    define MAX_MEM_LEVEL 9
  49. #  endif
  50. #endif
  51. /* Maximum value for windowBits in deflateInit2 and inflateInit2 */
  52. #ifndef MAX_WBITS
  53. #  define MAX_WBITS   15 /* 32K LZ77 window */
  54. #endif
  55. /* The memory requirements for deflate are (in bytes):
  56.             1 << (windowBits+2)   +  1 << (memLevel+9)
  57.  that is: 128K for windowBits=15  +  128K for memLevel = 8  (default values)
  58.  plus a few kilobytes for small objects. For example, if you want to reduce
  59.  the default memory requirements from 256K to 128K, compile with
  60.      make CFLAGS="-O -DMAX_WBITS=14 -DMAX_MEM_LEVEL=7"
  61.  Of course this will generally degrade compression (there's no free lunch).
  62.    The memory requirements for inflate are (in bytes) 1 << windowBits
  63.  that is, 32K for windowBits=15 (default value) plus a few kilobytes
  64.  for small objects.
  65. */
  66.                         /* Type declarations */
  67. #ifndef OF /* function prototypes */
  68. #  ifdef STDC
  69. #    define OF(args)  args
  70. #  else
  71. #    define OF(args)  ()
  72. #  endif
  73. #endif
  74. /* The following definitions for FAR are needed only for MSDOS mixed
  75.  * model programming (small or medium model with some far allocations).
  76.  * This was tested only with MSC; for other MSDOS compilers you may have
  77.  * to define NO_MEMCPY in zutil.h.  If you don't need the mixed model,
  78.  * just define FAR to be empty.
  79.  */
  80. #if defined(M_I86SM) || defined(M_I86MM) /* MSC small or medium model */
  81. #  ifdef _MSC_VER
  82. #    define FAR __far
  83. #  else
  84. #    define FAR far
  85. #  endif
  86. #endif
  87. #if defined(__BORLANDC__) && (defined(__SMALL__) || defined(__MEDIUM__))
  88. #    define FAR __far /* completely untested, just a best guess */
  89. #endif
  90. #ifndef FAR
  91. #   define FAR
  92. #endif
  93. typedef unsigned char  Byte;  /* 8 bits */
  94. typedef unsigned int   uInt;  /* 16 bits or more */
  95. typedef unsigned long  uLong; /* 32 bits or more */
  96. typedef Byte FAR Bytef;
  97. typedef char FAR charf;
  98. typedef int FAR intf;
  99. typedef uInt FAR uIntf;
  100. typedef uLong FAR uLongf;
  101. #ifdef STDC
  102.    typedef void FAR *voidpf;
  103.    typedef void     *voidp;
  104. #else
  105.    typedef Byte FAR *voidpf;
  106.    typedef Byte     *voidp;
  107. #endif
  108. #endif /* _ZCONF_H */