Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

Search Results for "waveOutGetErrorText" in [All]

winmm

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

      [DllImport ("winmm.dll", EntryPoint="waveOutGetErrorText", SetLastError=true, CharSet=CharSet.Auto)]

.

      private static extern uint waveOutGetErrorText(uint mmrError, StringBuilder pszText, uint cchText);

.

      public static string waveOutGetErrorText(int mmrError)

.

        uint errorResult = waveOutGetErrorText(mmrError, message, (uint)message.Capacity);

.

          return "waveOutGetErrorText failed.";

.

Declare Function waveOutGetErrorText Lib "winmm.dll" (TODO) As TODO

.
Documentation
[waveOutGetErrorText] on MSDN
.

       waveOutGetErrorText(MMRESULT, errmsg, MAXERRORLENGTH);

.

        waveOutGetErrorText(MMRESULT, errmsg, MAXERRORLENGTH);


 
Access PInvoke.net directly from VS: