waveOutGetErrorText function winmm

int waveOutGetErrorText(
  1. int mmrError,
  2. PWSTR pszText,
  3. int cchText
)

Retrieves a textual description of the error identified by the given error number.

To learn more, see learn.microsoft.com/windows/win32/api/mmeapi/nf-mmeapi-waveoutgeterrortext.

Implementation

@pragma('vm:prefer-inline')
int waveOutGetErrorText(int mmrError, PWSTR pszText, int cchText) =>
    _waveOutGetErrorText(mmrError, pszText, cchText);