|
waveInGetErrorText
The waveInGetErrorText function retrieves a textual description of the error identified by the given
error number.
MMRESULT waveInGetErrorText(
MMRESULT mmrError,
|
| LPSTR pszText,
|
| UINT cchText
|
| );
|
|
Parameters
mmrError
Error number.
pszText
Address of the buffer to be filled with the textual error description.
cchText
Size, in characters, of the buffer pointed to by pszText.
Return Values
Returns MMSYSERR_NOERROR if successful or an error otherwise. Possible error
values include the following:
MMSYSERR_BADERRNUM
| Specified error number is out of range.
| MMSYSERR_NODRIVER
| No device driver is present.
| MMSYSERR_NOMEM
| 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.
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
TMS Scripter Studio Pro components for Delphi/C++Builder
More Online Helps
Win32 Programmer's Reference (win32.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|