Group: Windows Multimedia - Library: winmm
MMRESULT waveOutSetVolume(
HWAVEOUT hwo,
DWORD dwVolume
); DECLARE INTEGER waveOutSetVolume IN winmm;
INTEGER hwo,;
INTEGER dwVolume
hwo Handle to an open waveform-audio output device. This parameter can also be a device identifier.
dwVolume 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.
Returns MMSYSERR_NOERROR (0) if successful or an error otherwise.
Home