waveOutGetErrorText function winmm

int waveOutGetErrorText(
  1. int mmrError,
  2. Pointer<Utf16> pszText,
  3. int cchText
)

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);