inflateInit2_ — Initializes the decompression system.
On success, the inflateInit2_()
function
shall return Z_OK
. Otherwise, inflateInit2_() shall return
a value as described below to indicate the error.
The inflateInit2_() function shall initialize the decompression system. On entry, strm shall refer to a user supplied z_stream object (a z_stream_s structure). The following fields shall be set on entry:
If the version
requested is not
compatible with the version
implemented, or if the size of the z_stream_s
structure
provided in stream_size does not
match the size in the library implementation, inflateInit2_()
shall fail, and return
Z_VERSION_ERROR
.
The windowBits
parameter shall be
a base 2 logarithm of the maximum
window size to use, and shall be a value between 8
and 15
.
If the input data was compressed with a larger window size, subsequent
attempts to
decompress this data will fail with Z_DATA_ERROR
,
rather than try to
allocate a larger window.
The inflateInit2_()
function is not in
the source standard;
it is only in the binary standard. Source applications should use the
inflateInit2() macro.
To initialize the decompression system with windowBits=15:
#include <stdio.h> |
On error, inflateInit2_() shall return one of the following error indicators:
In addition, the msg
field of the strm
may be set to an error message.
For additional information or queries on this page send feedback
© 2005-2007 Nokia |