openZipStream method

Pointer<Void> openZipStream(
  1. int windowBits,
  2. int compressLevel
)

zlib stream

Implementation

ffi.Pointer<ffi.Void> openZipStream(
  int windowBits,
  int compressLevel,
) {
  return _openZipStream(
    windowBits,
    compressLevel,
  );
}