ma_vfs_read function

ma_result ma_vfs_read(
  1. Pointer<Void> pVFS,
  2. ma_vfs_file file,
  3. Pointer<Void> pDst,
  4. int sizeInBytes,
  5. Pointer<Size> pBytesRead,
)

Implementation

ma_result ma_vfs_read(
  ffi.Pointer<ma_vfs> pVFS,
  ma_vfs_file file,
  ffi.Pointer<ffi.Void> pDst,
  int sizeInBytes,
  ffi.Pointer<ffi.Size> pBytesRead,
) => ma_result.fromValue(
  _ma_vfs_read(pVFS, file, pDst, sizeInBytes, pBytesRead),
);