| OLD | NEW |
| 1 /* zutil.h -- internal interface and configuration of the compression library | 1 /* zutil.h -- internal interface and configuration of the compression library |
| 2 * Copyright (C) 1995-2010 Jean-loup Gailly. | 2 * Copyright (C) 1995-2013 Jean-loup Gailly. |
| 3 * For conditions of distribution and use, see copyright notice in zlib.h | 3 * For conditions of distribution and use, see copyright notice in zlib.h |
| 4 */ | 4 */ |
| 5 | 5 |
| 6 /* WARNING: this file should *not* be used by applications. It is | 6 /* WARNING: this file should *not* be used by applications. It is |
| 7 part of the implementation of the compression library and is | 7 part of the implementation of the compression library and is |
| 8 subject to change. Applications should only use zlib.h. | 8 subject to change. Applications should only use zlib.h. |
| 9 */ | 9 */ |
| 10 | 10 |
| 11 /* @(#) $Id$ */ | 11 /* @(#) $Id$ */ |
| 12 | 12 |
| 13 #ifndef ZUTIL_H | 13 #ifndef ZUTIL_H |
| 14 #define ZUTIL_H | 14 #define ZUTIL_H |
| 15 | 15 |
| 16 #if ((__GNUC__-0) * 10 + __GNUC_MINOR__-0 >= 33) && !defined(NO_VIZ) | 16 #ifdef HAVE_HIDDEN |
| 17 # define ZLIB_INTERNAL __attribute__((visibility ("hidden"))) | 17 # define ZLIB_INTERNAL __attribute__((visibility ("hidden"))) |
| 18 #else | 18 #else |
| 19 # define ZLIB_INTERNAL | 19 # define ZLIB_INTERNAL |
| 20 #endif | 20 #endif |
| 21 | 21 |
| 22 #include "zlib.h" | 22 #include "zlib.h" |
| 23 | 23 |
| 24 #ifdef STDC | 24 #if defined(STDC) && !defined(Z_SOLO) |
| 25 # if !(defined(_WIN32_WCE) && defined(_MSC_VER)) | 25 # if !(defined(_WIN32_WCE) && defined(_MSC_VER)) |
| 26 # include <stddef.h> | 26 # include <stddef.h> |
| 27 # endif | 27 # endif |
| 28 # include <string.h> | 28 # include <string.h> |
| 29 # include <stdlib.h> | 29 # include <stdlib.h> |
| 30 #endif | 30 #endif |
| 31 |
| 32 #ifdef Z_SOLO |
| 33 typedef long ptrdiff_t; /* guess -- will be caught if guess is wrong */ |
| 34 #endif |
| 35 |
| 31 #ifdef NO_ERRNO_H | 36 #ifdef NO_ERRNO_H |
| 32 # ifdef _WIN32_WCE | 37 # ifdef _WIN32_WCE |
| 33 /* The Microsoft C Run-Time Library for Windows CE doesn't have | 38 /* The Microsoft C Run-Time Library for Windows CE doesn't have |
| 34 * errno. We define it as a global variable to simplify porting. | 39 * errno. We define it as a global variable to simplify porting. |
| 35 * Its value is always 0 and should not be used. We rename it to | 40 * Its value is always 0 and should not be used. We rename it to |
| 36 * avoid conflict with other libraries that use the same workaround. | 41 * avoid conflict with other libraries that use the same workaround. |
| 37 */ | 42 */ |
| 38 # define errno z_errno | 43 # define errno z_errno |
| 39 # endif | 44 # endif |
| 40 extern int errno; | 45 extern int errno; |
| 41 #else | 46 #else |
| 42 # ifndef _WIN32_WCE | 47 # ifndef _WIN32_WCE |
| 43 # include <errno.h> | 48 # include <errno.h> |
| 44 # endif | 49 # endif |
| 45 #endif | 50 #endif |
| 46 | 51 |
| 47 #ifndef local | 52 #ifndef local |
| 48 # define local static | 53 # define local static |
| 49 #endif | 54 #endif |
| 50 /* compile with -Dlocal if your debugger can't find static symbols */ | 55 /* compile with -Dlocal if your debugger can't find static symbols */ |
| 51 | 56 |
| 52 typedef unsigned char uch; | 57 typedef unsigned char uch; |
| 53 typedef uch FAR uchf; | 58 typedef uch FAR uchf; |
| 54 typedef unsigned short ush; | 59 typedef unsigned short ush; |
| 55 typedef ush FAR ushf; | 60 typedef ush FAR ushf; |
| 56 typedef unsigned long ulg; | 61 typedef unsigned long ulg; |
| 57 | 62 |
| 58 extern const char * const z_errmsg[10]; /* indexed by 2-zlib_error */ | 63 extern z_const char * const z_errmsg[10]; /* indexed by 2-zlib_error */ |
| 59 /* (size given to avoid silly warnings with Visual C++) */ | 64 /* (size given to avoid silly warnings with Visual C++) */ |
| 60 | 65 |
| 61 #define ERR_MSG(err) z_errmsg[Z_NEED_DICT-(err)] | 66 #define ERR_MSG(err) z_errmsg[Z_NEED_DICT-(err)] |
| 62 | 67 |
| 63 #define ERR_RETURN(strm,err) \ | 68 #define ERR_RETURN(strm,err) \ |
| 64 return (strm->msg = (char*)ERR_MSG(err), (err)) | 69 return (strm->msg = ERR_MSG(err), (err)) |
| 65 /* To be used only when the state is known to be valid */ | 70 /* To be used only when the state is known to be valid */ |
| 66 | 71 |
| 67 /* common constants */ | 72 /* common constants */ |
| 68 | 73 |
| 69 #ifndef DEF_WBITS | 74 #ifndef DEF_WBITS |
| 70 # define DEF_WBITS MAX_WBITS | 75 # define DEF_WBITS MAX_WBITS |
| 71 #endif | 76 #endif |
| 72 /* default windowBits for decompression. MAX_WBITS is for compression only */ | 77 /* default windowBits for decompression. MAX_WBITS is for compression only */ |
| 73 | 78 |
| 74 #if MAX_MEM_LEVEL >= 8 | 79 #if MAX_MEM_LEVEL >= 8 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 86 #define MIN_MATCH 3 | 91 #define MIN_MATCH 3 |
| 87 #define MAX_MATCH 258 | 92 #define MAX_MATCH 258 |
| 88 /* The minimum and maximum match lengths */ | 93 /* The minimum and maximum match lengths */ |
| 89 | 94 |
| 90 #define PRESET_DICT 0x20 /* preset dictionary flag in zlib header */ | 95 #define PRESET_DICT 0x20 /* preset dictionary flag in zlib header */ |
| 91 | 96 |
| 92 /* target dependencies */ | 97 /* target dependencies */ |
| 93 | 98 |
| 94 #if defined(MSDOS) || (defined(WINDOWS) && !defined(WIN32)) | 99 #if defined(MSDOS) || (defined(WINDOWS) && !defined(WIN32)) |
| 95 # define OS_CODE 0x00 | 100 # define OS_CODE 0x00 |
| 96 # if defined(__TURBOC__) || defined(__BORLANDC__) | 101 # ifndef Z_SOLO |
| 97 # if (__STDC__ == 1) && (defined(__LARGE__) || defined(__COMPACT__)) | 102 # if defined(__TURBOC__) || defined(__BORLANDC__) |
| 98 /* Allow compilation with ANSI keywords only enabled */ | 103 # if (__STDC__ == 1) && (defined(__LARGE__) || defined(__COMPACT__)) |
| 99 void _Cdecl farfree( void *block ); | 104 /* Allow compilation with ANSI keywords only enabled */ |
| 100 void *_Cdecl farmalloc( unsigned long nbytes ); | 105 void _Cdecl farfree( void *block ); |
| 101 # else | 106 void *_Cdecl farmalloc( unsigned long nbytes ); |
| 102 # include <alloc.h> | 107 # else |
| 108 # include <alloc.h> |
| 109 # endif |
| 110 # else /* MSC or DJGPP */ |
| 111 # include <malloc.h> |
| 103 # endif | 112 # endif |
| 104 # else /* MSC or DJGPP */ | |
| 105 # include <malloc.h> | |
| 106 # endif | 113 # endif |
| 107 #endif | 114 #endif |
| 108 | 115 |
| 109 #ifdef AMIGA | 116 #ifdef AMIGA |
| 110 # define OS_CODE 0x01 | 117 # define OS_CODE 0x01 |
| 111 #endif | 118 #endif |
| 112 | 119 |
| 113 #if defined(VAXC) || defined(VMS) | 120 #if defined(VAXC) || defined(VMS) |
| 114 # define OS_CODE 0x02 | 121 # define OS_CODE 0x02 |
| 115 # define F_OPEN(name, mode) \ | 122 # define F_OPEN(name, mode) \ |
| 116 fopen((name), (mode), "mbc=60", "ctx=stm", "rfm=fix", "mrs=512") | 123 fopen((name), (mode), "mbc=60", "ctx=stm", "rfm=fix", "mrs=512") |
| 117 #endif | 124 #endif |
| 118 | 125 |
| 119 #if defined(ATARI) || defined(atarist) | 126 #if defined(ATARI) || defined(atarist) |
| 120 # define OS_CODE 0x05 | 127 # define OS_CODE 0x05 |
| 121 #endif | 128 #endif |
| 122 | 129 |
| 123 #ifdef OS2 | 130 #ifdef OS2 |
| 124 # define OS_CODE 0x06 | 131 # define OS_CODE 0x06 |
| 125 # ifdef M_I86 | 132 # if defined(M_I86) && !defined(Z_SOLO) |
| 126 # include <malloc.h> | 133 # include <malloc.h> |
| 127 # endif | 134 # endif |
| 128 #endif | 135 #endif |
| 129 | 136 |
| 130 #if defined(MACOS) || defined(TARGET_OS_MAC) | 137 #if defined(MACOS) || defined(TARGET_OS_MAC) |
| 131 # define OS_CODE 0x07 | 138 # define OS_CODE 0x07 |
| 132 # if defined(__MWERKS__) && __dest_os != __be_os && __dest_os != __win32_os | 139 # ifndef Z_SOLO |
| 133 # include <unix.h> /* for fdopen */ | 140 # if defined(__MWERKS__) && __dest_os != __be_os && __dest_os != __win32_os |
| 134 # else | 141 # include <unix.h> /* for fdopen */ |
| 135 # ifndef fdopen | 142 # else |
| 136 # define fdopen(fd,mode) NULL /* No fdopen() */ | 143 # ifndef fdopen |
| 144 # define fdopen(fd,mode) NULL /* No fdopen() */ |
| 145 # endif |
| 137 # endif | 146 # endif |
| 138 # endif | 147 # endif |
| 139 #endif | 148 #endif |
| 140 | 149 |
| 141 #ifdef TOPS20 | 150 #ifdef TOPS20 |
| 142 # define OS_CODE 0x0a | 151 # define OS_CODE 0x0a |
| 143 #endif | 152 #endif |
| 144 | 153 |
| 145 #ifdef _MSC_VER | 154 #ifdef _MSC_VER |
| 146 #define zalign(x) __declspec(align(x)) | 155 #define zalign(x) __declspec(align(x)) |
| (...skipping 20 matching lines...) Expand all Loading... |
| 167 # define fdopen(fd,mode) NULL /* No fdopen() */ | 176 # define fdopen(fd,mode) NULL /* No fdopen() */ |
| 168 # ifndef _PTRDIFF_T_DEFINED | 177 # ifndef _PTRDIFF_T_DEFINED |
| 169 typedef int ptrdiff_t; | 178 typedef int ptrdiff_t; |
| 170 # define _PTRDIFF_T_DEFINED | 179 # define _PTRDIFF_T_DEFINED |
| 171 # endif | 180 # endif |
| 172 # else | 181 # else |
| 173 # define fdopen(fd,type) _fdopen(fd,type) | 182 # define fdopen(fd,type) _fdopen(fd,type) |
| 174 # endif | 183 # endif |
| 175 #endif | 184 #endif |
| 176 | 185 |
| 177 #if defined(__BORLANDC__) | 186 #if defined(__BORLANDC__) && !defined(MSDOS) |
| 178 #pragma warn -8004 | 187 #pragma warn -8004 |
| 179 #pragma warn -8008 | 188 #pragma warn -8008 |
| 180 #pragma warn -8066 | 189 #pragma warn -8066 |
| 181 #endif | 190 #endif |
| 182 | 191 |
| 183 /* provide prototypes for these when building zlib without LFS */ | 192 /* provide prototypes for these when building zlib without LFS */ |
| 184 #if !defined(_LARGEFILE64_SOURCE) || _LFS64_LARGEFILE-0 == 0 | 193 #if !defined(_WIN32) && \ |
| 194 (!defined(_LARGEFILE64_SOURCE) || _LFS64_LARGEFILE-0 == 0) |
| 185 ZEXTERN uLong ZEXPORT adler32_combine64 OF((uLong, uLong, z_off_t)); | 195 ZEXTERN uLong ZEXPORT adler32_combine64 OF((uLong, uLong, z_off_t)); |
| 186 ZEXTERN uLong ZEXPORT crc32_combine64 OF((uLong, uLong, z_off_t)); | 196 ZEXTERN uLong ZEXPORT crc32_combine64 OF((uLong, uLong, z_off_t)); |
| 187 #endif | 197 #endif |
| 188 | 198 |
| 189 /* common defaults */ | 199 /* common defaults */ |
| 190 | 200 |
| 191 #ifndef OS_CODE | 201 #ifndef OS_CODE |
| 192 # define OS_CODE 0x03 /* assume Unix */ | 202 # define OS_CODE 0x03 /* assume Unix */ |
| 193 #endif | 203 #endif |
| 194 | 204 |
| 195 #ifndef F_OPEN | 205 #ifndef F_OPEN |
| 196 # define F_OPEN(name, mode) fopen((name), (mode)) | 206 # define F_OPEN(name, mode) fopen((name), (mode)) |
| 197 #endif | 207 #endif |
| 198 | 208 |
| 199 /* functions */ | 209 /* functions */ |
| 200 | 210 |
| 201 #if defined(STDC99) || (defined(__TURBOC__) && __TURBOC__ >= 0x550) | 211 #if defined(pyr) || defined(Z_SOLO) |
| 202 # ifndef HAVE_VSNPRINTF | |
| 203 # define HAVE_VSNPRINTF | |
| 204 # endif | |
| 205 #endif | |
| 206 #if defined(__CYGWIN__) | |
| 207 # ifndef HAVE_VSNPRINTF | |
| 208 # define HAVE_VSNPRINTF | |
| 209 # endif | |
| 210 #endif | |
| 211 #ifndef HAVE_VSNPRINTF | |
| 212 # ifdef MSDOS | |
| 213 /* vsnprintf may exist on some MS-DOS compilers (DJGPP?), | |
| 214 but for now we just assume it doesn't. */ | |
| 215 # define NO_vsnprintf | |
| 216 # endif | |
| 217 # ifdef __TURBOC__ | |
| 218 # define NO_vsnprintf | |
| 219 # endif | |
| 220 # ifdef WIN32 | |
| 221 /* In Win32, vsnprintf is available as the "non-ANSI" _vsnprintf. */ | |
| 222 # if !defined(vsnprintf) && !defined(NO_vsnprintf) | |
| 223 # if !defined(_MSC_VER) || ( defined(_MSC_VER) && _MSC_VER < 1500 ) | |
| 224 # define vsnprintf _vsnprintf | |
| 225 # endif | |
| 226 # endif | |
| 227 # endif | |
| 228 # ifdef __SASC | |
| 229 # define NO_vsnprintf | |
| 230 # endif | |
| 231 #endif | |
| 232 #ifdef VMS | |
| 233 # define NO_vsnprintf | |
| 234 #endif | |
| 235 | |
| 236 #if defined(pyr) | |
| 237 # define NO_MEMCPY | 212 # define NO_MEMCPY |
| 238 #endif | 213 #endif |
| 239 #if defined(SMALL_MEDIUM) && !defined(_MSC_VER) && !defined(__SC__) | 214 #if defined(SMALL_MEDIUM) && !defined(_MSC_VER) && !defined(__SC__) |
| 240 /* Use our own functions for small and medium model with MSC <= 5.0. | 215 /* Use our own functions for small and medium model with MSC <= 5.0. |
| 241 * You may have to use the same strategy for Borland C (untested). | 216 * You may have to use the same strategy for Borland C (untested). |
| 242 * The __SC__ check is for Symantec. | 217 * The __SC__ check is for Symantec. |
| 243 */ | 218 */ |
| 244 # define NO_MEMCPY | 219 # define NO_MEMCPY |
| 245 #endif | 220 #endif |
| 246 #if defined(STDC) && !defined(HAVE_MEMCPY) && !defined(NO_MEMCPY) | 221 #if defined(STDC) && !defined(HAVE_MEMCPY) && !defined(NO_MEMCPY) |
| (...skipping 28 matching lines...) Expand all Loading... |
| 275 # define Tracecv(c,x) {if (z_verbose>1 && (c)) fprintf x ;} | 250 # define Tracecv(c,x) {if (z_verbose>1 && (c)) fprintf x ;} |
| 276 #else | 251 #else |
| 277 # define Assert(cond,msg) | 252 # define Assert(cond,msg) |
| 278 # define Trace(x) | 253 # define Trace(x) |
| 279 # define Tracev(x) | 254 # define Tracev(x) |
| 280 # define Tracevv(x) | 255 # define Tracevv(x) |
| 281 # define Tracec(c,x) | 256 # define Tracec(c,x) |
| 282 # define Tracecv(c,x) | 257 # define Tracecv(c,x) |
| 283 #endif | 258 #endif |
| 284 | 259 |
| 285 | 260 #ifndef Z_SOLO |
| 286 voidpf ZLIB_INTERNAL zcalloc OF((voidpf opaque, unsigned items, | 261 voidpf ZLIB_INTERNAL zcalloc OF((voidpf opaque, unsigned items, |
| 287 unsigned size)); | 262 unsigned size)); |
| 288 void ZLIB_INTERNAL zcfree OF((voidpf opaque, voidpf ptr)); | 263 void ZLIB_INTERNAL zcfree OF((voidpf opaque, voidpf ptr)); |
| 264 #endif |
| 289 | 265 |
| 290 #define ZALLOC(strm, items, size) \ | 266 #define ZALLOC(strm, items, size) \ |
| 291 (*((strm)->zalloc))((strm)->opaque, (items), (size)) | 267 (*((strm)->zalloc))((strm)->opaque, (items), (size)) |
| 292 #define ZFREE(strm, addr) (*((strm)->zfree))((strm)->opaque, (voidpf)(addr)) | 268 #define ZFREE(strm, addr) (*((strm)->zfree))((strm)->opaque, (voidpf)(addr)) |
| 293 #define TRY_FREE(s, p) {if (p) ZFREE(s, p);} | 269 #define TRY_FREE(s, p) {if (p) ZFREE(s, p);} |
| 294 | 270 |
| 271 /* Reverse the bytes in a 32-bit value */ |
| 272 #define ZSWAP32(q) ((((q) >> 24) & 0xff) + (((q) >> 8) & 0xff00) + \ |
| 273 (((q) & 0xff00) << 8) + (((q) & 0xff) << 24)) |
| 274 |
| 295 #endif /* ZUTIL_H */ | 275 #endif /* ZUTIL_H */ |
| OLD | NEW |