mz_zip_is_zip64 function

  1. @Native<mz_bool Function(Pointer<mz_zip_archive>)>(ffi.Pointer<mz_zip_archive>)>()
int mz_zip_is_zip64(
  1. Pointer<mz_zip_archive> pZip
)

MZ_TRUE if the file is in zip64 format. / / A file is considered zip64 if it contained a zip64 end of central directory marker, or if it contained any zip64 extended file information fields in the central directory.

Implementation

@ffi.Native<mz_bool Function(ffi.Pointer<mz_zip_archive>)>()
external int mz_zip_is_zip64(ffi.Pointer<mz_zip_archive> pZip);