The midiOutGetVolume function retrieves the current volume setting of a MIDI output device.
MMRESULT midiOutGetVolume(
HMIDIOUT hmo,
LPDWORD lpdwVolume
);
If a device does not support both left and right volume control, the low-order word of the specified location contains the mono volume level.
Any value set by using the midiOutSetVolume function is returned, regardless of whether the device supports that value.
Returns MMSYSERR_NOERROR if successful or an error otherwise. Possible error values include the following:
Value | Description |
---|---|
MMSYSERR_INVALHANDLE | The specified device handle is invalid. |
MMSYSERR_INVALPARAM | The specified pointer or structure is invalid. |
MMSYSERR_NOMEM | The system is unable to allocate or lock memory. |
MMSYSERR_NOTSUPPORTED | The function is not supported. |
If a device identifier is used, then the result of the midiOutGetVolume call and the information returned in lpdwVolume applies to all instances of the device. If a device handle is used, then the result and information returned applies only to the instance of the device referenced by the device handle.
Not all devices support volume control. You can determine whether a device supports volume control by querying the device by using the midiOutGetDevCaps function and specifying the MIDICAPS_VOLUME flag.
You can also determine whether the device supports volume control on both the left and right channels by querying the device by using the midiOutGetDevCaps function and specifying the MIDICAPS_LRVOLUME flag.
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, midiOutSetVolume, midiOutGetDevCaps