OLD | NEW |
1 /* zconf.h -- configuration of the zlib compression library | 1 /* zconf.h -- configuration of the zlib compression library |
2 * Copyright (C) 1995-2010 Jean-loup Gailly. | 2 * Copyright (C) 1995-2010 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 /* @(#) $Id$ */ | 6 /* @(#) $Id$ */ |
7 | 7 |
8 #ifndef ZCONF_H | 8 #ifndef ZCONF_H |
9 #define ZCONF_H | 9 #define ZCONF_H |
10 | 10 |
| 11 /* This include does prefixing as below, but with an updated set of names */ |
| 12 #include "mozzconf.h" |
| 13 |
11 /* | 14 /* |
12 * If you *really* need a unique prefix for all types and library functions, | 15 * If you *really* need a unique prefix for all types and library functions, |
13 * compile with -DZ_PREFIX. The "standard" zlib should be compiled without it. | 16 * compile with -DZ_PREFIX. The "standard" zlib should be compiled without it. |
14 * Even better than compiling with -DZ_PREFIX would be to use configure to set | 17 * Even better than compiling with -DZ_PREFIX would be to use configure to set |
15 * this permanently in zconf.h using "./configure --zprefix". | 18 * this permanently in zconf.h using "./configure --zprefix". |
16 */ | 19 */ |
17 #ifdef Z_PREFIX /* may be set to #if 1 by ./configure */ | 20 #ifdef Z_PREFIX /* may be set to #if 1 by ./configure */ |
18 | 21 |
19 /* all linked symbols */ | 22 /* all linked symbols */ |
20 # define _dist_code z__dist_code | 23 # define _dist_code z__dist_code |
(...skipping 398 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
419 #pragma map(inflateEnd,"INEND") | 422 #pragma map(inflateEnd,"INEND") |
420 #pragma map(inflateSync,"INSY") | 423 #pragma map(inflateSync,"INSY") |
421 #pragma map(inflateSetDictionary,"INSEDI") | 424 #pragma map(inflateSetDictionary,"INSEDI") |
422 #pragma map(compressBound,"CMBND") | 425 #pragma map(compressBound,"CMBND") |
423 #pragma map(inflate_table,"INTABL") | 426 #pragma map(inflate_table,"INTABL") |
424 #pragma map(inflate_fast,"INFA") | 427 #pragma map(inflate_fast,"INFA") |
425 #pragma map(inflate_copyright,"INCOPY") | 428 #pragma map(inflate_copyright,"INCOPY") |
426 #endif | 429 #endif |
427 | 430 |
428 #endif /* ZCONF_H */ | 431 #endif /* ZCONF_H */ |
OLD | NEW |