mz_deflateReset function

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

Quickly resets a compressor without having to reallocate anything. Same as calling mz_deflateEnd() followed by mz_deflateInit()/mz_deflateInit2().

Implementation

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