mz_zip_read_archive_data function
Reads n bytes of raw archive data, starting at file offset file_ofs, to pBuf.
Implementation
@ffi.Native<
ffi.Size Function(
ffi.Pointer<mz_zip_archive>,
mz_uint64,
ffi.Pointer<ffi.Void>,
ffi.Size,
)
>()
external int mz_zip_read_archive_data(
ffi.Pointer<mz_zip_archive> pZip,
int file_ofs,
ffi.Pointer<ffi.Void> pBuf,
int n,
);