Update contrib.
3 // Copyright (c) 2007 Nokia Corporation and/or its subsidiary(-ies).
4 // All rights reserved.
6 // Portions Copyright (c) 2007 1995-2005 Jean-loup Gailly and Mark Adler.
13 #if (defined(__TOOLS2__) ||defined(__TOOLS__))
14 // A tools build picks up the zconf.h file from the user include path
18 // Any other build picks up zconf.h from stdapis system include directory
29 //=========================================================================
30 // The application can compare zlibVersion and ZLIB_VERSION for consistency.
31 //=========================================================================
32 ZEXTERN const char * ZEXPORT zlibVersion_r OF((void));
36 //=========================================================================
37 // This function shall compresses as much as possible.
38 //=========================================================================
39 ZEXTERN int ZEXPORT deflate_r OF((z_streamp strm, int flush));
43 //=========================================================================
44 // This function shall deallocate all the dynamically allocated data
46 //=========================================================================
47 ZEXTERN int ZEXPORT deflateEnd_r OF((z_streamp strm));
51 //=========================================================================
52 // This function shall decompresses as much as possible.
53 //=========================================================================
54 ZEXTERN int ZEXPORT inflate_r OF((z_streamp strm, int flush));
58 //=========================================================================
59 // This function shall deallocate all the dynamically allocated data
61 //=========================================================================
62 ZEXTERN int ZEXPORT inflateEnd_r OF((z_streamp strm));
68 //=========================================================================
69 // This function shall Initializes the compression dictionary from the given
70 // byte sequence without producing any compressed output.
71 //=========================================================================
72 ZEXTERN int ZEXPORT deflateSetDictionary_r OF((z_streamp strm,
73 const Bytef *dictionary,
77 //=========================================================================
78 // This function shall sets the destination stream as a complete copy of
80 //=========================================================================
81 ZEXTERN int ZEXPORT deflateCopy_r OF((z_streamp dest,
85 //=========================================================================
86 // This function does not free and reallocate all the internal compression
88 //=========================================================================
89 ZEXTERN int ZEXPORT deflateReset_r OF((z_streamp strm));
93 //=========================================================================
94 // This function shall update the compression level and compression strategy.
95 //=========================================================================
96 ZEXTERN int ZEXPORT deflateParams_r OF((z_streamp strm,
101 //=========================================================================
102 // This function shall fine tune deflate's internal compression parameters.
103 //=========================================================================
104 ZEXTERN int ZEXPORT deflateTune_r OF((z_streamp strm,
112 //=========================================================================
113 // This function shall an upper bound on the compressed size after deflation
114 // of sourceLen bytes.
115 //=========================================================================
116 ZEXTERN uLong ZEXPORT deflateBound_r OF((z_streamp strm,
120 //=========================================================================
121 // This function shall insert bits in the deflate output stream.
122 //=========================================================================
123 ZEXTERN int ZEXPORT deflatePrime_r OF((z_streamp strm,
127 //=========================================================================
128 // This function shall provides gzip header information for when a gzip
129 // stream is requested by deflateInit2().
130 //=========================================================================
131 ZEXTERN int ZEXPORT deflateSetHeader_r OF((z_streamp strm,
137 //=========================================================================
138 // This function initializes the decompression dictionary from the given
139 // uncompressed byte sequence.
140 //=========================================================================
141 ZEXTERN int ZEXPORT inflateSetDictionary_r OF((z_streamp strm,
142 const Bytef *dictionary,
146 //=========================================================================
147 // This function shall skips invalid coompressed data until a full flush
148 // point can be found, or unil all the available input is skipped.
149 //=========================================================================
150 ZEXTERN int ZEXPORT inflateSync_r OF((z_streamp strm));
153 //=========================================================================
154 // This function shall set the destination stream as a complete copy of
155 // the source stream.
156 //=========================================================================
157 ZEXTERN int ZEXPORT inflateCopy_r OF((z_streamp dest,
162 //=========================================================================
163 // This function shall not free and reallocate all the internal decompression
165 //=========================================================================
166 ZEXTERN int ZEXPORT inflateReset_r OF((z_streamp strm));
169 //=========================================================================
170 // This function inserts bits in the inflate input stream.
171 //=========================================================================
172 ZEXTERN int ZEXPORT inflatePrime_r OF((z_streamp strm,
176 //=========================================================================
177 // This function requests that gzip header information be stored in the
178 // provided gz_header structure.
179 //=========================================================================
180 ZEXTERN int ZEXPORT inflateGetHeader_r OF((z_streamp strm,
183 //=========================================================================
184 // This function does a raw inflate with a single call using a call-back
185 // interface for input and output.
186 //=========================================================================
187 ZEXTERN int ZEXPORT inflateBack_r OF((z_streamp strm,
188 in_func in, void FAR *in_desc,
189 out_func out, void FAR *out_desc));
191 //=========================================================================
192 // This function frees all memory allocated by inflateBackInit().
193 //=========================================================================
194 ZEXTERN int ZEXPORT inflateBackEnd_r OF((z_streamp strm));
197 //=========================================================================
198 // This function returns flags indicating compile-time options.
199 //=========================================================================
200 ZEXTERN uLong ZEXPORT zlibCompileFlags_r OF((void));
205 //=========================================================================
206 // This function compressed the source buffer into the destination buffer.
207 //=========================================================================
208 ZEXTERN int ZEXPORT compress_r OF((Bytef *dest, uLongf *destLen,
209 const Bytef *source, uLong sourceLen));
213 //=========================================================================
214 // This function compresses the source buffer into the destination buffer.
215 //=========================================================================
216 ZEXTERN int ZEXPORT compress2_r OF((Bytef *dest, uLongf *destLen,
217 const Bytef *source, uLong sourceLen, int level));
220 //=========================================================================
221 // This function returns an upper bound on the compressed size after the
222 // compress or compress2 on the sourceLen bytes.
223 //=========================================================================
224 ZEXTERN uLong ZEXPORT compressBound_r OF((uLong sourceLen));
227 //=========================================================================
228 // This function decompresses the source buffer into the destination buffer.
229 //=========================================================================
230 ZEXTERN int ZEXPORT uncompress_r OF((Bytef *dest, uLongf *destLen,
231 const Bytef *source, uLong sourceLen));
234 //=========================================================================
235 // Update a running Adler-32 checksum with the bytes buf[0..len-1] and
236 // return the updated checksum.
237 //=========================================================================
238 ZEXTERN uLong ZEXPORT adler32_r OF((uLong adler, const Bytef *buf, uInt len));
240 //=========================================================================
241 // This function combines two Adler-32 checksums into one.
242 //=========================================================================
243 ZEXTERN uLong ZEXPORT adler32_combine_r OF((uLong adler1, uLong adler2,
247 //=========================================================================
248 // Update a running CRC-32 checksum with the bytes buf[0..len-1] and
249 // return the updated CRC-32.
250 //=========================================================================
251 ZEXTERN uLong ZEXPORT crc32_r OF((uLong crc, const Bytef *buf, uInt len));
254 //=========================================================================
255 // This function combines two CRC-32 check values into one.
256 //=========================================================================
257 ZEXTERN uLong ZEXPORT crc32_combine_r OF((uLong crc1, uLong crc2,
262 /* deflateInit and inflateInit are macros to allow checking the zlib version
263 * and the compiler's view of z_stream:
265 ZEXTERN int ZEXPORT deflateInit__r OF((z_streamp strm, int level,
266 const char *version, int stream_size));
267 ZEXTERN int ZEXPORT inflateInit__r OF((z_streamp strm,
268 const char *version, int stream_size));
269 ZEXTERN int ZEXPORT deflateInit2__r OF((z_streamp strm, int level, int method,
270 int windowBits, int memLevel,
271 int strategy, const char *version,
273 ZEXTERN int ZEXPORT inflateInit2__r OF((z_streamp strm, int windowBits,
274 const char *version, int stream_size));
275 ZEXTERN int ZEXPORT inflateBackInit__r OF((z_streamp strm, int windowBits,
276 unsigned char FAR *window,
281 #define deflateInit_r(strm, level) \
282 deflateInit__r((strm), (level), ZLIB_VERSION, sizeof(z_stream))
283 #define inflateInit_r(strm) \
284 inflateInit__r((strm), ZLIB_VERSION, sizeof(z_stream))
285 #define deflateInit2_r(strm, level, method, windowBits, memLevel, strategy) \
286 deflateInit2__r((strm),(level),(method),(windowBits),(memLevel),\
287 (strategy), ZLIB_VERSION, sizeof(z_stream))
288 #define inflateInit2_r(strm, windowBits) \
289 inflateInit2__r((strm), (windowBits), ZLIB_VERSION, sizeof(z_stream))
291 #define inflateBackInit_r(strm, windowBits, window) \
292 inflateBackInit__r((strm), (windowBits), (window), \
293 ZLIB_VERSION, sizeof(z_stream))
296 ZEXTERN const char * ZEXPORT zError_r OF((int));
297 ZEXTERN int ZEXPORT inflateSyncPoint_r OF((z_streamp z));
298 ZEXTERN const uLongf * ZEXPORT get_crc_table_r OF((void));
305 #endif /* LIBZCORE_H */