mz_inflateReset function

  1. @Native<Int Function(mz_streamp)>(mz_streamp)>()
int mz_inflateReset(
  1. mz_streamp pStream
)

Quickly resets a compressor without having to reallocate anything. Same as calling mz_inflateEnd() followed by mz_inflateInit()/mz_inflateInit2().

Implementation

@ffi.Native<ffi.Int Function(mz_streamp)>()
external int mz_inflateReset(mz_streamp pStream);