The midiOutOpen function opens a MIDI output device for playback.
UINT midiOutOpen(
LPHMIDIOUT lphmo,
UINT uDeviceID,
DWORD dwCallback,
DWORD dwCallbackInstance,
DWORD dwFlags
);
Returns MMSYSERR_NOERROR if successful or an error otherwise. Possible error values include the following:
Value | Description | ||
---|---|---|---|
MIDIERR_NODEVICE | No MIDI port was found. This error occurs only when the mapper is opened. | ||
MMSYSERR_ALLOCATED | The specified resource is already allocated. | ||
MMSYSERR_BADDEVICEID | The specified device identifier is out of range. | ||
MMSYSERR_INVALPARAM | The specified pointer or structure is invalid. | ||
MMSYSERR_NOMEM | The system is unable to allocate or lock memory. |
To determine the number of MIDI output devices present in the system, use the midiOutGetNumDevs function. The device identifier specified by wDeviceID varies from zero to one less than the number of devices present. MIDI_MAPPER can also be used as the device identifier.
If a window or thread is chosen to receive callback information, the following messages are sent to the window procedure or thread to indicate the progress of MIDI output: MM_MOM_OPEN, MM_MOM_CLOSE, and MM_MOM_DONE.
If a function is chosen to receive callback information, the following messages are sent to the function to indicate the progress of MIDI output: MOM_OPEN, MOM_CLOSE, and MOM_DONE.
Windows NT: Requires version 3.1 or later.
Windows: Requires Windows 95 or later.
Windows CE: Unsupported.
Header: Declared in mmsystem.h.
Import Library: Use winmm.lib.
Musical Instrument Digital Interface (MIDI) Overview, MIDI Functions, midiOutGetNumDevs, MidiOutProc, MM_MOM_OPEN, MM_MOM_CLOSE, MM_MOM_DONE