mz_file_get_crc method

int mz_file_get_crc(
  1. Pointer<Int8> path,
  2. Pointer<Uint32> result_crc
)

Implementation

int mz_file_get_crc(
  ffi.Pointer<ffi.Int8> path,
  ffi.Pointer<ffi.Uint32> result_crc,
) {
  return _mz_file_get_crc(
    path,
    result_crc,
  );
}