ma_sound_init_from_file_w function

ma_result ma_sound_init_from_file_w(
  1. Pointer<ma_engine> pEngine,
  2. Pointer<WChar> pFilePath,
  3. Dartma_uint32 flags$1,
  4. Pointer<ma_sound_group> pGroup,
  5. Pointer<ma_fence> pDoneFence,
  6. Pointer<ma_sound_group> pSound,
)

Implementation

ma_result ma_sound_init_from_file_w(
  ffi.Pointer<ma_engine> pEngine,
  ffi.Pointer<ffi.WChar> pFilePath,
  Dartma_uint32 flags$1,
  ffi.Pointer<ma_sound_group> pGroup,
  ffi.Pointer<ma_fence> pDoneFence,
  ffi.Pointer<ma_sound> pSound,
) => ma_result.fromValue(
  _ma_sound_init_from_file_w(
    pEngine,
    pFilePath,
    flags$1,
    pGroup,
    pDoneFence,
    pSound,
  ),
);