@msdn=http://msdn.microsoft.com/en-us/library/ms711583(VS.85).aspx @pinvoke=http://www.pinvoke.net/default.aspx/winmm.midiConnect Summary: Connects a MIDI input device to a MIDI thru or output device, or connects a MIDI thru device to a MIDI output device. !!!!C# Signature: [DllImport("winmm.dll")] static extern UInt32 midiConnect(IntPtr hMidi, IntPtr hMidiOut, IntPtr pReserved); !!!!VB Signature: Declare Function midiConnect Lib "winmm.dll" (hMidi AS Intptr, hMidiOut AS Intptr, pReserved AS IntPtr) AS UInt32 ' LD83 !!!!User-Defined Types: None. !!!!Alternative Managed API: Do you know one? Please contribute it! !!!!Notes: !!!!Tips & Tricks: Please add some! !!!!Sample Code: UInt32 Connect(IntPtr midiInputHandle, IntPtr midiOutputHandle) { return midiConnect(midiInputHandle, midiOutputHandle, IntPtr.Zero); } Documentation: midiConnect@msdn on MSDN
Edit winmm.midiConnect
You do not have permission to change this page. If you feel this is in error, please send feedback with the contact link on the main page.