sl@0
|
1 |
// LIBZCORE.H
|
sl@0
|
2 |
//
|
sl@0
|
3 |
// Copyright (c) 2007 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
4 |
// All rights reserved.
|
sl@0
|
5 |
//
|
sl@0
|
6 |
// Portions Copyright (c) 2007 1995-2005 Jean-loup Gailly and Mark Adler.
|
sl@0
|
7 |
//
|
sl@0
|
8 |
|
sl@0
|
9 |
#ifndef LIBZCORE_H
|
sl@0
|
10 |
#define LIBZCORE_H
|
sl@0
|
11 |
|
sl@0
|
12 |
|
sl@0
|
13 |
#if (defined(__TOOLS2__) ||defined(__TOOLS__))
|
sl@0
|
14 |
// A tools build picks up the zconf.h file from the user include path
|
sl@0
|
15 |
#include "zlib.h"
|
sl@0
|
16 |
#else
|
sl@0
|
17 |
#include <e32def.h>
|
sl@0
|
18 |
// Any other build picks up zconf.h from stdapis system include directory
|
sl@0
|
19 |
#include <zlib.h>
|
sl@0
|
20 |
#endif
|
sl@0
|
21 |
|
sl@0
|
22 |
|
sl@0
|
23 |
|
sl@0
|
24 |
#ifdef __cplusplus
|
sl@0
|
25 |
extern "C" {
|
sl@0
|
26 |
#endif
|
sl@0
|
27 |
|
sl@0
|
28 |
|
sl@0
|
29 |
//=========================================================================
|
sl@0
|
30 |
// The application can compare zlibVersion and ZLIB_VERSION for consistency.
|
sl@0
|
31 |
//=========================================================================
|
sl@0
|
32 |
ZEXTERN const char * ZEXPORT zlibVersion_r OF((void));
|
sl@0
|
33 |
|
sl@0
|
34 |
|
sl@0
|
35 |
|
sl@0
|
36 |
//=========================================================================
|
sl@0
|
37 |
// This function shall compresses as much as possible.
|
sl@0
|
38 |
//=========================================================================
|
sl@0
|
39 |
ZEXTERN int ZEXPORT deflate_r OF((z_streamp strm, int flush));
|
sl@0
|
40 |
|
sl@0
|
41 |
|
sl@0
|
42 |
|
sl@0
|
43 |
//=========================================================================
|
sl@0
|
44 |
// This function shall deallocate all the dynamically allocated data
|
sl@0
|
45 |
// structures.
|
sl@0
|
46 |
//=========================================================================
|
sl@0
|
47 |
ZEXTERN int ZEXPORT deflateEnd_r OF((z_streamp strm));
|
sl@0
|
48 |
|
sl@0
|
49 |
|
sl@0
|
50 |
|
sl@0
|
51 |
//=========================================================================
|
sl@0
|
52 |
// This function shall decompresses as much as possible.
|
sl@0
|
53 |
//=========================================================================
|
sl@0
|
54 |
ZEXTERN int ZEXPORT inflate_r OF((z_streamp strm, int flush));
|
sl@0
|
55 |
|
sl@0
|
56 |
|
sl@0
|
57 |
|
sl@0
|
58 |
//=========================================================================
|
sl@0
|
59 |
// This function shall deallocate all the dynamically allocated data
|
sl@0
|
60 |
// structures.
|
sl@0
|
61 |
//=========================================================================
|
sl@0
|
62 |
ZEXTERN int ZEXPORT inflateEnd_r OF((z_streamp strm));
|
sl@0
|
63 |
|
sl@0
|
64 |
|
sl@0
|
65 |
|
sl@0
|
66 |
|
sl@0
|
67 |
|
sl@0
|
68 |
//=========================================================================
|
sl@0
|
69 |
// This function shall Initializes the compression dictionary from the given
|
sl@0
|
70 |
// byte sequence without producing any compressed output.
|
sl@0
|
71 |
//=========================================================================
|
sl@0
|
72 |
ZEXTERN int ZEXPORT deflateSetDictionary_r OF((z_streamp strm,
|
sl@0
|
73 |
const Bytef *dictionary,
|
sl@0
|
74 |
uInt dictLength));
|
sl@0
|
75 |
|
sl@0
|
76 |
|
sl@0
|
77 |
//=========================================================================
|
sl@0
|
78 |
// This function shall sets the destination stream as a complete copy of
|
sl@0
|
79 |
// the source stream
|
sl@0
|
80 |
//=========================================================================
|
sl@0
|
81 |
ZEXTERN int ZEXPORT deflateCopy_r OF((z_streamp dest,
|
sl@0
|
82 |
z_streamp source));
|
sl@0
|
83 |
|
sl@0
|
84 |
|
sl@0
|
85 |
//=========================================================================
|
sl@0
|
86 |
// This function does not free and reallocate all the internal compression
|
sl@0
|
87 |
// state.
|
sl@0
|
88 |
//=========================================================================
|
sl@0
|
89 |
ZEXTERN int ZEXPORT deflateReset_r OF((z_streamp strm));
|
sl@0
|
90 |
|
sl@0
|
91 |
|
sl@0
|
92 |
|
sl@0
|
93 |
//=========================================================================
|
sl@0
|
94 |
// This function shall update the compression level and compression strategy.
|
sl@0
|
95 |
//=========================================================================
|
sl@0
|
96 |
ZEXTERN int ZEXPORT deflateParams_r OF((z_streamp strm,
|
sl@0
|
97 |
int level,
|
sl@0
|
98 |
int strategy));
|
sl@0
|
99 |
|
sl@0
|
100 |
|
sl@0
|
101 |
//=========================================================================
|
sl@0
|
102 |
// This function shall fine tune deflate's internal compression parameters.
|
sl@0
|
103 |
//=========================================================================
|
sl@0
|
104 |
ZEXTERN int ZEXPORT deflateTune_r OF((z_streamp strm,
|
sl@0
|
105 |
int good_length,
|
sl@0
|
106 |
int max_lazy,
|
sl@0
|
107 |
int nice_length,
|
sl@0
|
108 |
int max_chain));
|
sl@0
|
109 |
|
sl@0
|
110 |
|
sl@0
|
111 |
|
sl@0
|
112 |
//=========================================================================
|
sl@0
|
113 |
// This function shall an upper bound on the compressed size after deflation
|
sl@0
|
114 |
// of sourceLen bytes.
|
sl@0
|
115 |
//=========================================================================
|
sl@0
|
116 |
ZEXTERN uLong ZEXPORT deflateBound_r OF((z_streamp strm,
|
sl@0
|
117 |
uLong sourceLen));
|
sl@0
|
118 |
|
sl@0
|
119 |
|
sl@0
|
120 |
//=========================================================================
|
sl@0
|
121 |
// This function shall insert bits in the deflate output stream.
|
sl@0
|
122 |
//=========================================================================
|
sl@0
|
123 |
ZEXTERN int ZEXPORT deflatePrime_r OF((z_streamp strm,
|
sl@0
|
124 |
int bits,
|
sl@0
|
125 |
int value));
|
sl@0
|
126 |
|
sl@0
|
127 |
//=========================================================================
|
sl@0
|
128 |
// This function shall provides gzip header information for when a gzip
|
sl@0
|
129 |
// stream is requested by deflateInit2().
|
sl@0
|
130 |
//=========================================================================
|
sl@0
|
131 |
ZEXTERN int ZEXPORT deflateSetHeader_r OF((z_streamp strm,
|
sl@0
|
132 |
gz_headerp head));
|
sl@0
|
133 |
|
sl@0
|
134 |
|
sl@0
|
135 |
|
sl@0
|
136 |
|
sl@0
|
137 |
//=========================================================================
|
sl@0
|
138 |
// This function initializes the decompression dictionary from the given
|
sl@0
|
139 |
// uncompressed byte sequence.
|
sl@0
|
140 |
//=========================================================================
|
sl@0
|
141 |
ZEXTERN int ZEXPORT inflateSetDictionary_r OF((z_streamp strm,
|
sl@0
|
142 |
const Bytef *dictionary,
|
sl@0
|
143 |
uInt dictLength));
|
sl@0
|
144 |
|
sl@0
|
145 |
|
sl@0
|
146 |
//=========================================================================
|
sl@0
|
147 |
// This function shall skips invalid coompressed data until a full flush
|
sl@0
|
148 |
// point can be found, or unil all the available input is skipped.
|
sl@0
|
149 |
//=========================================================================
|
sl@0
|
150 |
ZEXTERN int ZEXPORT inflateSync_r OF((z_streamp strm));
|
sl@0
|
151 |
|
sl@0
|
152 |
|
sl@0
|
153 |
//=========================================================================
|
sl@0
|
154 |
// This function shall set the destination stream as a complete copy of
|
sl@0
|
155 |
// the source stream.
|
sl@0
|
156 |
//=========================================================================
|
sl@0
|
157 |
ZEXTERN int ZEXPORT inflateCopy_r OF((z_streamp dest,
|
sl@0
|
158 |
z_streamp source));
|
sl@0
|
159 |
|
sl@0
|
160 |
|
sl@0
|
161 |
|
sl@0
|
162 |
//=========================================================================
|
sl@0
|
163 |
// This function shall not free and reallocate all the internal decompression
|
sl@0
|
164 |
// state.
|
sl@0
|
165 |
//=========================================================================
|
sl@0
|
166 |
ZEXTERN int ZEXPORT inflateReset_r OF((z_streamp strm));
|
sl@0
|
167 |
|
sl@0
|
168 |
|
sl@0
|
169 |
//=========================================================================
|
sl@0
|
170 |
// This function inserts bits in the inflate input stream.
|
sl@0
|
171 |
//=========================================================================
|
sl@0
|
172 |
ZEXTERN int ZEXPORT inflatePrime_r OF((z_streamp strm,
|
sl@0
|
173 |
int bits,
|
sl@0
|
174 |
int value));
|
sl@0
|
175 |
|
sl@0
|
176 |
//=========================================================================
|
sl@0
|
177 |
// This function requests that gzip header information be stored in the
|
sl@0
|
178 |
// provided gz_header structure.
|
sl@0
|
179 |
//=========================================================================
|
sl@0
|
180 |
ZEXTERN int ZEXPORT inflateGetHeader_r OF((z_streamp strm,
|
sl@0
|
181 |
gz_headerp head));
|
sl@0
|
182 |
|
sl@0
|
183 |
//=========================================================================
|
sl@0
|
184 |
// This function does a raw inflate with a single call using a call-back
|
sl@0
|
185 |
// interface for input and output.
|
sl@0
|
186 |
//=========================================================================
|
sl@0
|
187 |
ZEXTERN int ZEXPORT inflateBack_r OF((z_streamp strm,
|
sl@0
|
188 |
in_func in, void FAR *in_desc,
|
sl@0
|
189 |
out_func out, void FAR *out_desc));
|
sl@0
|
190 |
|
sl@0
|
191 |
//=========================================================================
|
sl@0
|
192 |
// This function frees all memory allocated by inflateBackInit().
|
sl@0
|
193 |
//=========================================================================
|
sl@0
|
194 |
ZEXTERN int ZEXPORT inflateBackEnd_r OF((z_streamp strm));
|
sl@0
|
195 |
|
sl@0
|
196 |
|
sl@0
|
197 |
//=========================================================================
|
sl@0
|
198 |
// This function returns flags indicating compile-time options.
|
sl@0
|
199 |
//=========================================================================
|
sl@0
|
200 |
ZEXTERN uLong ZEXPORT zlibCompileFlags_r OF((void));
|
sl@0
|
201 |
|
sl@0
|
202 |
|
sl@0
|
203 |
|
sl@0
|
204 |
|
sl@0
|
205 |
//=========================================================================
|
sl@0
|
206 |
// This function compressed the source buffer into the destination buffer.
|
sl@0
|
207 |
//=========================================================================
|
sl@0
|
208 |
ZEXTERN int ZEXPORT compress_r OF((Bytef *dest, uLongf *destLen,
|
sl@0
|
209 |
const Bytef *source, uLong sourceLen));
|
sl@0
|
210 |
|
sl@0
|
211 |
|
sl@0
|
212 |
|
sl@0
|
213 |
//=========================================================================
|
sl@0
|
214 |
// This function compresses the source buffer into the destination buffer.
|
sl@0
|
215 |
//=========================================================================
|
sl@0
|
216 |
ZEXTERN int ZEXPORT compress2_r OF((Bytef *dest, uLongf *destLen,
|
sl@0
|
217 |
const Bytef *source, uLong sourceLen, int level));
|
sl@0
|
218 |
|
sl@0
|
219 |
|
sl@0
|
220 |
//=========================================================================
|
sl@0
|
221 |
// This function returns an upper bound on the compressed size after the
|
sl@0
|
222 |
// compress or compress2 on the sourceLen bytes.
|
sl@0
|
223 |
//=========================================================================
|
sl@0
|
224 |
ZEXTERN uLong ZEXPORT compressBound_r OF((uLong sourceLen));
|
sl@0
|
225 |
|
sl@0
|
226 |
|
sl@0
|
227 |
//=========================================================================
|
sl@0
|
228 |
// This function decompresses the source buffer into the destination buffer.
|
sl@0
|
229 |
//=========================================================================
|
sl@0
|
230 |
ZEXTERN int ZEXPORT uncompress_r OF((Bytef *dest, uLongf *destLen,
|
sl@0
|
231 |
const Bytef *source, uLong sourceLen));
|
sl@0
|
232 |
|
sl@0
|
233 |
|
sl@0
|
234 |
//=========================================================================
|
sl@0
|
235 |
// Update a running Adler-32 checksum with the bytes buf[0..len-1] and
|
sl@0
|
236 |
// return the updated checksum.
|
sl@0
|
237 |
//=========================================================================
|
sl@0
|
238 |
ZEXTERN uLong ZEXPORT adler32_r OF((uLong adler, const Bytef *buf, uInt len));
|
sl@0
|
239 |
|
sl@0
|
240 |
//=========================================================================
|
sl@0
|
241 |
// This function combines two Adler-32 checksums into one.
|
sl@0
|
242 |
//=========================================================================
|
sl@0
|
243 |
ZEXTERN uLong ZEXPORT adler32_combine_r OF((uLong adler1, uLong adler2,
|
sl@0
|
244 |
z_off_t len2));
|
sl@0
|
245 |
|
sl@0
|
246 |
|
sl@0
|
247 |
//=========================================================================
|
sl@0
|
248 |
// Update a running CRC-32 checksum with the bytes buf[0..len-1] and
|
sl@0
|
249 |
// return the updated CRC-32.
|
sl@0
|
250 |
//=========================================================================
|
sl@0
|
251 |
ZEXTERN uLong ZEXPORT crc32_r OF((uLong crc, const Bytef *buf, uInt len));
|
sl@0
|
252 |
|
sl@0
|
253 |
|
sl@0
|
254 |
//=========================================================================
|
sl@0
|
255 |
// This function combines two CRC-32 check values into one.
|
sl@0
|
256 |
//=========================================================================
|
sl@0
|
257 |
ZEXTERN uLong ZEXPORT crc32_combine_r OF((uLong crc1, uLong crc2,
|
sl@0
|
258 |
z_off_t len2));
|
sl@0
|
259 |
|
sl@0
|
260 |
|
sl@0
|
261 |
|
sl@0
|
262 |
/* deflateInit and inflateInit are macros to allow checking the zlib version
|
sl@0
|
263 |
* and the compiler's view of z_stream:
|
sl@0
|
264 |
*/
|
sl@0
|
265 |
ZEXTERN int ZEXPORT deflateInit__r OF((z_streamp strm, int level,
|
sl@0
|
266 |
const char *version, int stream_size));
|
sl@0
|
267 |
ZEXTERN int ZEXPORT inflateInit__r OF((z_streamp strm,
|
sl@0
|
268 |
const char *version, int stream_size));
|
sl@0
|
269 |
ZEXTERN int ZEXPORT deflateInit2__r OF((z_streamp strm, int level, int method,
|
sl@0
|
270 |
int windowBits, int memLevel,
|
sl@0
|
271 |
int strategy, const char *version,
|
sl@0
|
272 |
int stream_size));
|
sl@0
|
273 |
ZEXTERN int ZEXPORT inflateInit2__r OF((z_streamp strm, int windowBits,
|
sl@0
|
274 |
const char *version, int stream_size));
|
sl@0
|
275 |
ZEXTERN int ZEXPORT inflateBackInit__r OF((z_streamp strm, int windowBits,
|
sl@0
|
276 |
unsigned char FAR *window,
|
sl@0
|
277 |
const char *version,
|
sl@0
|
278 |
int stream_size));
|
sl@0
|
279 |
|
sl@0
|
280 |
|
sl@0
|
281 |
#define deflateInit_r(strm, level) \
|
sl@0
|
282 |
deflateInit__r((strm), (level), ZLIB_VERSION, sizeof(z_stream))
|
sl@0
|
283 |
#define inflateInit_r(strm) \
|
sl@0
|
284 |
inflateInit__r((strm), ZLIB_VERSION, sizeof(z_stream))
|
sl@0
|
285 |
#define deflateInit2_r(strm, level, method, windowBits, memLevel, strategy) \
|
sl@0
|
286 |
deflateInit2__r((strm),(level),(method),(windowBits),(memLevel),\
|
sl@0
|
287 |
(strategy), ZLIB_VERSION, sizeof(z_stream))
|
sl@0
|
288 |
#define inflateInit2_r(strm, windowBits) \
|
sl@0
|
289 |
inflateInit2__r((strm), (windowBits), ZLIB_VERSION, sizeof(z_stream))
|
sl@0
|
290 |
|
sl@0
|
291 |
#define inflateBackInit_r(strm, windowBits, window) \
|
sl@0
|
292 |
inflateBackInit__r((strm), (windowBits), (window), \
|
sl@0
|
293 |
ZLIB_VERSION, sizeof(z_stream))
|
sl@0
|
294 |
|
sl@0
|
295 |
|
sl@0
|
296 |
ZEXTERN const char * ZEXPORT zError_r OF((int));
|
sl@0
|
297 |
ZEXTERN int ZEXPORT inflateSyncPoint_r OF((z_streamp z));
|
sl@0
|
298 |
ZEXTERN const uLongf * ZEXPORT get_crc_table_r OF((void));
|
sl@0
|
299 |
|
sl@0
|
300 |
|
sl@0
|
301 |
#ifdef __cplusplus
|
sl@0
|
302 |
}
|
sl@0
|
303 |
#endif
|
sl@0
|
304 |
|
sl@0
|
305 |
#endif /* LIBZCORE_H */
|