ma_vfs_open function

ma_result ma_vfs_open(
  1. Pointer<Void> pVFS,
  2. Pointer<Char> pFilePath,
  3. Dartma_uint32 openMode,
  4. Pointer<Pointer<Void>> pFile,
)

Implementation

ma_result ma_vfs_open(
  ffi.Pointer<ma_vfs> pVFS,
  ffi.Pointer<ffi.Char> pFilePath,
  Dartma_uint32 openMode,
  ffi.Pointer<ma_vfs_file> pFile,
) => ma_result.fromValue(_ma_vfs_open(pVFS, pFilePath, openMode, pFile));