waveInGetErrorText function winmm

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

The waveInGetErrorText function retrieves a textual description of the error identified by the given error number.

MMRESULT waveInGetErrorTextW(
  MMRESULT mmrError,
  LPSTR    pszText,
  UINT     cchText
);

Implementation

int waveInGetErrorText(int mmrError, Pointer<Utf16> pszText, int cchText) =>
    _waveInGetErrorText(mmrError, pszText, cchText);