mz_zip_entry_close_raw method

int mz_zip_entry_close_raw(
  1. Pointer<Void> handle,
  2. int uncompressed_size,
  3. int crc32
)

Implementation

int mz_zip_entry_close_raw(
  ffi.Pointer<ffi.Void> handle,
  int uncompressed_size,
  int crc32,
) {
  return _mz_zip_entry_close_raw(
    handle,
    uncompressed_size,
    crc32,
  );
}