I want to change the master volume with the function
MMRESULT waveOutSetVolume(
HWAVEOUT hwo,
DWORD dwVolume
);
hwo
Handle to an open waveform-audio output device. This parameter can also be a device identifier.
How do I create a handler for the Master Volume?
dwVolume
Specifies a new volume setting. The low-order word contains the left-channel volume setting, and the high-order word contains the right-channel setting. A value of 0xFFFF represents full volume, and a value of 0x0000 is silence.
If a device does not support both left and right volume control, the low-order word of dwVolume specifies the volume level, and the high-order word is ignored.
How do I pass the Volume (for example 75) to the function?
Trying it like this : How to change master volume programmatically? doesnt't work for me!
There is no master volume change in Vista+ through legacy
waveOutXxx
API. Use WASAPI instead: