mz_zip_reader_open_buffer method

int mz_zip_reader_open_buffer(
  1. Pointer<Void> handle,
  2. Pointer<Uint8> buf,
  3. int len,
  4. int copy,
)

Implementation

int mz_zip_reader_open_buffer(
  ffi.Pointer<ffi.Void> handle,
  ffi.Pointer<ffi.Uint8> buf,
  int len,
  int copy,
) {
  return _mz_zip_reader_open_buffer(
    handle,
    buf,
    len,
    copy,
  );
}