]> git.lizzy.rs Git - zlib.git/blob - zutil.h
Do not use the visibility attribute if NO_VIZ defined.
[zlib.git] / zutil.h
1 /* zutil.h -- internal interface and configuration of the compression library
2  * Copyright (C) 1995-2012 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$ */
12
13 #ifndef ZUTIL_H
14 #define ZUTIL_H
15
16 #define GCC_VER ((__GNUC__-0) * 100 + __GNUC_MINOR__-0)
17 #if ((GCC_VER >= 303 && !defined(__APPLE__)) || GCC_VER >= 400) && !defined(NO_VIZ)
18 #  define ZLIB_INTERNAL __attribute__((visibility ("hidden")))
19 #else
20 #  define ZLIB_INTERNAL
21 #endif
22
23 #include "zlib.h"
24
25 #if defined(STDC) && !defined(Z_SOLO)
26 #  if !(defined(_WIN32_WCE) && defined(_MSC_VER))
27 #    include <stddef.h>
28 #  endif
29 #  include <string.h>
30 #  include <stdlib.h>
31 #endif
32
33 #ifdef Z_SOLO
34    typedef long ptrdiff_t;  /* guess -- will be caught if guess is wrong */
35 #endif
36
37 #ifndef local
38 #  define local static
39 #endif
40 /* compile with -Dlocal if your debugger can't find static symbols */
41
42 typedef unsigned char  uch;
43 typedef uch FAR uchf;
44 typedef unsigned short ush;
45 typedef ush FAR ushf;
46 typedef unsigned long  ulg;
47
48 extern const char * const z_errmsg[10]; /* indexed by 2-zlib_error */
49 /* (size given to avoid silly warnings with Visual C++) */
50
51 #define ERR_MSG(err) z_errmsg[Z_NEED_DICT-(err)]
52
53 #define ERR_RETURN(strm,err) \
54   return (strm->msg = (char*)ERR_MSG(err), (err))
55 /* To be used only when the state is known to be valid */
56
57         /* common constants */
58
59 #ifndef DEF_WBITS
60 #  define DEF_WBITS MAX_WBITS
61 #endif
62 /* default windowBits for decompression. MAX_WBITS is for compression only */
63
64 #if MAX_MEM_LEVEL >= 8
65 #  define DEF_MEM_LEVEL 8
66 #else
67 #  define DEF_MEM_LEVEL  MAX_MEM_LEVEL
68 #endif
69 /* default memLevel */
70
71 #define STORED_BLOCK 0
72 #define STATIC_TREES 1
73 #define DYN_TREES    2
74 /* The three kinds of block type */
75
76 #define MIN_MATCH  3
77 #define MAX_MATCH  258
78 /* The minimum and maximum match lengths */
79
80 #define PRESET_DICT 0x20 /* preset dictionary flag in zlib header */
81
82         /* target dependencies */
83
84 #if defined(MSDOS) || (defined(WINDOWS) && !defined(WIN32))
85 #  define OS_CODE  0x00
86 #  ifndef Z_SOLO
87 #    if defined(__TURBOC__) || defined(__BORLANDC__)
88 #      if (__STDC__ == 1) && (defined(__LARGE__) || defined(__COMPACT__))
89          /* Allow compilation with ANSI keywords only enabled */
90          void _Cdecl farfree( void *block );
91          void *_Cdecl farmalloc( unsigned long nbytes );
92 #      else
93 #        include <alloc.h>
94 #      endif
95 #    else /* MSC or DJGPP */
96 #      include <malloc.h>
97 #    endif
98 #  endif
99 #endif
100
101 #ifdef AMIGA
102 #  define OS_CODE  0x01
103 #endif
104
105 #if defined(VAXC) || defined(VMS)
106 #  define OS_CODE  0x02
107 #  define F_OPEN(name, mode) \
108      fopen((name), (mode), "mbc=60", "ctx=stm", "rfm=fix", "mrs=512")
109 #endif
110
111 #if defined(ATARI) || defined(atarist)
112 #  define OS_CODE  0x05
113 #endif
114
115 #ifdef OS2
116 #  define OS_CODE  0x06
117 #  if defined(M_I86) && !defined(Z_SOLO)
118 #    include <malloc.h>
119 #  endif
120 #endif
121
122 #if defined(MACOS) || defined(TARGET_OS_MAC)
123 #  define OS_CODE  0x07
124 #  ifndef Z_SOLO
125 #    if defined(__MWERKS__) && __dest_os != __be_os && __dest_os != __win32_os
126 #      include <unix.h> /* for fdopen */
127 #    else
128 #      ifndef fdopen
129 #        define fdopen(fd,mode) NULL /* No fdopen() */
130 #      endif
131 #    endif
132 #  endif
133 #endif
134
135 #ifdef TOPS20
136 #  define OS_CODE  0x0a
137 #endif
138
139 #ifdef WIN32
140 #  ifndef __CYGWIN__  /* Cygwin is Unix, not Win32 */
141 #    define OS_CODE  0x0b
142 #  endif
143 #endif
144
145 #ifdef __50SERIES /* Prime/PRIMOS */
146 #  define OS_CODE  0x0f
147 #endif
148
149 #if defined(_BEOS_) || defined(RISCOS)
150 #  define fdopen(fd,mode) NULL /* No fdopen() */
151 #endif
152
153 #if (defined(_MSC_VER) && (_MSC_VER > 600)) && !defined __INTERIX
154 #  if defined(_WIN32_WCE)
155 #    define fdopen(fd,mode) NULL /* No fdopen() */
156 #    ifndef _PTRDIFF_T_DEFINED
157        typedef int ptrdiff_t;
158 #      define _PTRDIFF_T_DEFINED
159 #    endif
160 #  else
161 #    define fdopen(fd,type)  _fdopen(fd,type)
162 #  endif
163 #endif
164
165 #if defined(__BORLANDC__) && !defined(MSDOS)
166   #pragma warn -8004
167   #pragma warn -8008
168   #pragma warn -8066
169 #endif
170
171 /* provide prototypes for these when building zlib without LFS */
172 #if !defined(_WIN32) && (!defined(_LARGEFILE64_SOURCE) || _LFS64_LARGEFILE-0 == 0)
173     ZEXTERN uLong ZEXPORT adler32_combine64 OF((uLong, uLong, z_off_t));
174     ZEXTERN uLong ZEXPORT crc32_combine64 OF((uLong, uLong, z_off_t));
175 #endif
176
177         /* common defaults */
178
179 #ifndef OS_CODE
180 #  define OS_CODE  0x03  /* assume Unix */
181 #endif
182
183 #ifndef F_OPEN
184 #  define F_OPEN(name, mode) fopen((name), (mode))
185 #endif
186
187          /* functions */
188
189 #if defined(pyr) || defined(Z_SOLO)
190 #  define NO_MEMCPY
191 #endif
192 #if defined(SMALL_MEDIUM) && !defined(_MSC_VER) && !defined(__SC__)
193  /* Use our own functions for small and medium model with MSC <= 5.0.
194   * You may have to use the same strategy for Borland C (untested).
195   * The __SC__ check is for Symantec.
196   */
197 #  define NO_MEMCPY
198 #endif
199 #if defined(STDC) && !defined(HAVE_MEMCPY) && !defined(NO_MEMCPY)
200 #  define HAVE_MEMCPY
201 #endif
202 #ifdef HAVE_MEMCPY
203 #  ifdef SMALL_MEDIUM /* MSDOS small or medium model */
204 #    define zmemcpy _fmemcpy
205 #    define zmemcmp _fmemcmp
206 #    define zmemzero(dest, len) _fmemset(dest, 0, len)
207 #  else
208 #    define zmemcpy memcpy
209 #    define zmemcmp memcmp
210 #    define zmemzero(dest, len) memset(dest, 0, len)
211 #  endif
212 #else
213    void ZLIB_INTERNAL zmemcpy OF((Bytef* dest, const Bytef* source, uInt len));
214    int ZLIB_INTERNAL zmemcmp OF((const Bytef* s1, const Bytef* s2, uInt len));
215    void ZLIB_INTERNAL zmemzero OF((Bytef* dest, uInt len));
216 #endif
217
218 /* Diagnostic functions */
219 #ifdef DEBUG
220 #  include <stdio.h>
221    extern int ZLIB_INTERNAL z_verbose;
222    extern void ZLIB_INTERNAL z_error OF((char *m));
223 #  define Assert(cond,msg) {if(!(cond)) z_error(msg);}
224 #  define Trace(x) {if (z_verbose>=0) fprintf x ;}
225 #  define Tracev(x) {if (z_verbose>0) fprintf x ;}
226 #  define Tracevv(x) {if (z_verbose>1) fprintf x ;}
227 #  define Tracec(c,x) {if (z_verbose>0 && (c)) fprintf x ;}
228 #  define Tracecv(c,x) {if (z_verbose>1 && (c)) fprintf x ;}
229 #else
230 #  define Assert(cond,msg)
231 #  define Trace(x)
232 #  define Tracev(x)
233 #  define Tracevv(x)
234 #  define Tracec(c,x)
235 #  define Tracecv(c,x)
236 #endif
237
238 #ifndef Z_SOLO
239    voidpf ZLIB_INTERNAL zcalloc OF((voidpf opaque, unsigned items,
240                                     unsigned size));
241    void ZLIB_INTERNAL zcfree  OF((voidpf opaque, voidpf ptr));
242 #endif
243
244 #define ZALLOC(strm, items, size) \
245            (*((strm)->zalloc))((strm)->opaque, (items), (size))
246 #define ZFREE(strm, addr)  (*((strm)->zfree))((strm)->opaque, (voidpf)(addr))
247 #define TRY_FREE(s, p) {if (p) ZFREE(s, p);}
248
249 /* Reverse the bytes in a 32-bit value */
250 #ifndef Z_SOLO
251 #  if defined(_WIN32) && (_MSC_VER >= 1300) && (defined(_M_IX86) || defined(_M_X64))
252 #    include <stdlib.h>
253 #    pragma intrinsic(_byteswap_ulong)
254 #    define ZSWAP32(q) _byteswap_ulong(q)
255 #  elif defined(__GNUC__) && ((__GNUC__ > 4) || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3))
256 #    define ZSWAP32(q) __builtin_bswap32(q)
257 #  endif
258 #endif
259 #ifndef ZSWAP32
260 #  define ZSWAP32(q) ((((q) >> 24) & 0xff) + (((q) >> 8) & 0xff00) + \
261                       (((q) & 0xff00) << 8) + (((q) & 0xff) << 24))
262 #endif
263
264 #endif /* ZUTIL_H */