waveInGetErrorText function (mmeapi.h)
The waveInGetErrorText function retrieves a textual description of the error identified by the given error number.
Syntax
MMRESULT waveInGetErrorText(
MMRESULT mmrError,
LPSTR pszText,
UINT cchText
);
Parameters
mmrError
Error number.
pszText
Pointer to the buffer to be filled with the textual error description.
cchText
Size, in characters, of the buffer pointed to by pszText.
Return value
Returns MMSYSERR_NOERROR if successful or an error otherwise. Possible error values include the following.
Return code | Description |
---|---|
|
Specified error number is out of range. |
|
No device driver is present. |
|
Unable to allocate or lock memory. |
Remarks
If the textual error description is longer than the specified buffer, the description is truncated. The returned error string is always null-terminated. If cchText is zero, nothing is copied and the function returns zero. All error descriptions are less than MAXERRORLENGTH characters long.
Requirements
Requirement | Value |
---|---|
Minimum supported client | Windows 2000 Professional [desktop apps only] |
Minimum supported server | Windows 2000 Server [desktop apps only] |
Target Platform | Windows |
Header | mmeapi.h (include Windows.h) |
Library | Winmm.lib |
DLL | Winmm.dll |