Initializes the internal stream state for decompression.

Namespace:  C1.C1Zip.ZLib
Assembly:  C1.Silverlight.Zip (in C1.Silverlight.Zip.dll)

Syntax

C#
public int inflateInit()
Visual Basic
Public Function inflateInit As Integer

Return Value

Zero on success, an error code on failure.

Remarks

The fields next_in and avail_in must be initialized before by the caller.

inflateInit does not perform any decompression apart from reading the zlib header if present: data decompression is done by the inflate(Int32) method. Therefore, the next_in and avail_in may be modified, but next_out and avail_out are unchanged.

See Also