|
MidiOutProc
The MidiOutProc function is the callback function for handling outgoing MIDI messages. MidiOutProc is a placeholder for the application-supplied function name. The address of
the function can be specified in the callback-address parameter of the midiOutOpen function.
- oid CALLBACK MidiOutProc(
HMIDIOUT hmo,
|
| UINT wMsg,
|
| DWORD dwInstance,
|
| DWORD dwParam1,
|
| DWORD dwParam2
|
| );
|
|
Parameters
hmo
Handle of the MIDI device associated with the callback function.
wMsg
MIDI output message.
dwInstance
Instance data supplied by using the midiOutOpen function.
dwParam1
Message parameters.
dwParam2
Message parameters.
Return Values
This function does not return a value.
Remarks
Applications should not call any system-defined functions from inside a
callback function, except for EnterCriticalSection, LeaveCriticalSection, midiOutLongMsg, midiOutShortMsg, OutputDebugString, PostMessage, PostThreadMessage, SetEvent, timeGetSystemTime, timeGetTime, timeKillEvent, and timeSetEvent. Calling other wave functions will cause deadlock.
See Also
EnterCriticalSection, LeaveCriticalSection, midiOutLongMsg, midiOutOpen, midiOutShortMsg, OutputDebugString, PostMessage, PostThreadMessage, SetEvent, timeGetSystemTime, timeGetTime, timeKillEvent, timeSetEvent,
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
|