Skip to content

Latest commit

 

History

History
58 lines (38 loc) · 1.15 KB

File metadata and controls

58 lines (38 loc) · 1.15 KB

Home

Function name : mixerGetControlDetails

Group: Windows Multimedia - Library: winmm


Retrieves details about a single control associated with an audio line.


Declaration:

MMRESULT mixerGetControlDetails(
	HMIXEROBJ hmxobj,
	LPMIXERCONTROLDETAILS pmxcd,
	DWORD fdwDetails
);  

FoxPro declaration:

DECLARE INTEGER mixerGetControlDetails IN winmm;
	INTEGER  hmxobj,;
	STRING @ pmxcd,;
	INTEGER  fdwDetails
  

Parameters:

hmxobj Handle to the mixer device object being queried.

pmxcd Pointer to a MIXERCONTROLDETAILS structure, which is filled with state information about the control.

fdwDetails Flags for retrieving control details.


Return value:

Returns MMSYSERR_NOERROR (0) if successful or an error otherwise.


Comments:

All members of the MIXERCONTROLDETAILS structure must be initialized before calling this function.

See also: mixerSetControlDetails.