mz_zip_reader_file_stat function

  1. @Native<mz_bool Function(Pointer<mz_zip_archive>, mz_uint, Pointer<mz_zip_archive_file_stat>)>(ffi.Pointer<mz_zip_archive>, mz_uint, ffi.Pointer<mz_zip_archive_file_stat>)>()
int mz_zip_reader_file_stat(
  1. Pointer<mz_zip_archive> pZip,
  2. int file_index,
  3. Pointer<mz_zip_archive_file_stat> pStat
)

Returns detailed information about an archive file entry.

Implementation

@ffi.Native<
  mz_bool Function(
    ffi.Pointer<mz_zip_archive>,
    mz_uint,
    ffi.Pointer<mz_zip_archive_file_stat>,
  )
>()
external int mz_zip_reader_file_stat(
  ffi.Pointer<mz_zip_archive> pZip,
  int file_index,
  ffi.Pointer<mz_zip_archive_file_stat> pStat,
);