waveOutGetErrorText function winmm
The waveOutGetErrorText function retrieves a textual description of the error identified by the given error number.
MMRESULT waveOutGetErrorTextW(
MMRESULT mmrError,
LPWSTR pszText,
UINT cchText
);
Implementation
int waveOutGetErrorText(int mmrError, Pointer<Utf16> pszText, int cchText) =>
_waveOutGetErrorText(mmrError, pszText, cchText);