mz_deflateEnd function

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

mz_deflateEnd() deinitializes a compressor: / / Return values: / / MZ_OK on success. / / MZ_STREAM_ERROR if the stream is bogus.

Implementation

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