Group: Windows Multimedia - Library: winmm
MMRESULT mixerSetControlDetails(
HMIXEROBJ hmxobj,
LPMIXERCONTROLDETAILS pmxcd,
DWORD fdwDetails
); DECLARE INTEGER mixerSetControlDetails IN winmm;
INTEGER hmxobj,;
STRING @ pmxcd,;
INTEGER fdwDetails hmxobj Handle to the mixer device object for which properties are being set.
pmxcd Pointer to a MIXERCONTROLDETAILS structure. This structure is used to reference control detail structures that contain the desired state for the control.
fdwDetails Flags for setting properties for a control.
Returns MMSYSERR_NOERROR (0) if successful or an error otherwise.
All members of the MIXERCONTROLDETAILS structure must be initialized before calling mixerSetControlDetails.
See also: mixerGetControlDetails.
Home