Skip to content

Latest commit

 

History

History
53 lines (36 loc) · 1.05 KB

File metadata and controls

53 lines (36 loc) · 1.05 KB

Home

Function name : mixerGetLineControls

Group: Windows Multimedia - Library: winmm


The mixerGetLineControls function retrieves one or more controls associated with an audio line.


Code examples:

Quering Audio Mixer Device

Declaration:

MMRESULT mixerGetLineControls(
  HMIXEROBJ hmxobj,
  LPMIXERLINECONTROLS pmxlc,
  DWORD fdwControls
);  

FoxPro declaration:

DECLARE INTEGER mixerGetLineControls IN winmm;
	INTEGER   hmxobj,;
	STRING  @ pmxlc,;
	INTEGER   fdwControls
  

Parameters:

hmxobj Handle to the mixer device object that is being queried.

pmxlc Pointer to a MIXERLINECONTROLS structure.

fdwControls Flags for retrieving information about one or more controls associated with an audio line.


Return value:

Returns MMSYSERR_NOERROR if successful or an error otherwise.