📄 zconf.h
字号:
/****************************************************************************** Copyright (c) 2004, UTStarcom, Inc.** All Rights Reserved.**** Subsystem : all modules** File : zconf.h** Created By : Pengliang** Created On : 2/2/ 2005**** Purpose:** ****************************************************************************//* zconf.h -- configuration of the zlib compression library * Copyright (C) 1995-1996 Jean-loup Gailly. * For conditions of distribution and use, see copyright notice in zlib.h */#ifndef _ZCONF_H#define _ZCONF_H/* Maximum value for memLevel in deflateInit2 */#ifndef MAX_MEM_LEVEL# ifdef MAXSEG_64K# define MAX_MEM_LEVEL 8# else# define MAX_MEM_LEVEL 9# endif#endif/* Maximum value for windowBits in deflateInit2 and inflateInit2 */#ifndef MAX_WBITS# define MAX_WBITS 15 /* 32K LZ77 window */#endif/* The memory requirements for deflate are (in bytes): 1 << (windowBits+2) + 1 << (memLevel+9) that is: 128K for windowBits=15 + 128K for memLevel = 8 (default values) plus a few kilobytes for small objects. For example, if you want to reduce the default memory requirements from 256K to 128K, compile with make CFLAGS="-O -DMAX_WBITS=14 -DMAX_MEM_LEVEL=7" Of course this will generally degrade compression (there's no free lunch). The memory requirements for inflate are (in bytes) 1 << windowBits that is, 32K for windowBits=15 (default value) plus a few kilobytes for small objects.*/ /* Type declarations */#define OF(args) args/* The following definitions for FAR are needed only for MSDOS mixed * model programming (small or medium model with some far allocations). * This was tested only with MSC; for other MSDOS compilers you may have * to define NO_MEMCPY in zutil.h. If you don't need the mixed model, * just define FAR to be empty. */ #if 0/*start,melco,unzip,pengliang*/#if (defined(M_I86SM) || defined(M_I86MM)) && !defined(__32BIT__) /* MSC small or medium model */# define SMALL_MEDIUM# ifdef _MSC_VER# define FAR __far# else# define FAR far# endif#endif#else#define FAR #endif/*end,melco,unzip,pengliang*/#if defined(__BORLANDC__) && (defined(__SMALL__) || defined(__MEDIUM__))# ifndef __32BIT__# define SMALL_MEDIUM# define FAR __far# endif#endif#ifndef FAR# define FAR#endiftypedef unsigned char Byte; /* 8 bits */typedef unsigned int uInt; /* 16 bits or more */typedef unsigned long uLong; /* 32 bits or more */#if defined(__BORLANDC__) && defined(SMALL_MEDIUM) /* Borland C/C++ ignores FAR inside typedef */# define Bytef Byte FAR#else typedef Byte FAR Bytef;#endiftypedef char FAR charf;typedef int FAR intf;typedef uInt FAR uIntf;typedef uLong FAR uLongf;typedef void FAR *voidpf;typedef void *voidp;/* Compile with -DZLIB_DLL for Windows DLL support */#if 0#if (defined(_WINDOWS) || defined(WINDOWS)) && defined(ZLIB_DLL)# include <windows.h># define EXPORT WINAPI#else# define EXPORT#endif#else# define EXPORT#endif/*define unzip_const.*/#define unzip_const#endif /* _ZCONF_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -