PlaySound function winmm

int PlaySound(
  1. Pointer<Utf16> pszSound,
  2. int hmod,
  3. int fdwSound
)

The PlaySound function plays a sound specified by the given file name, resource, or system event.

BOOL PlaySoundW(
  LPCTSTR pszSound,
  HMODULE hmod,
  DWORD fdwSound);

Implementation

int PlaySound(Pointer<Utf16> pszSound, int hmod, int fdwSound) =>
    _PlaySound(pszSound, hmod, fdwSound);