mz_zip_zero_struct function

  1. @Native<Void Function(Pointer<mz_zip_archive>)>(ffi.Pointer<mz_zip_archive>)>()
void mz_zip_zero_struct(
  1. Pointer<mz_zip_archive> pZip
)

Clears a mz_zip_archive struct to all zeros. / / Important: This must be done before passing the struct to any mz_zip functions.

Implementation

@ffi.Native<ffi.Void Function(ffi.Pointer<mz_zip_archive>)>()
external void mz_zip_zero_struct(ffi.Pointer<mz_zip_archive> pZip);