Skip to content

Latest commit

 

History

History
53 lines (36 loc) · 935 Bytes

mixerGetLineInfo.md

File metadata and controls

53 lines (36 loc) · 935 Bytes

Home

Function name : mixerGetLineInfo

Group: Windows Multimedia - Library: winmm


The mixerGetLineInfo function retrieves information about a specific line of a mixer device.


Code examples:

Quering Audio Mixer Device

Declaration:

MMRESULT mixerGetLineInfo(
  HMIXEROBJ hmxobj,
  LPMIXERLINE pmxl,
  DWORD fdwInfo
);  

FoxPro declaration:

DECLARE INTEGER mixerGetLineInfo IN winmm;
	INTEGER   hmxobj,;
	STRING  @ pmxl,;
	INTEGER   fdwInfo
  

Parameters:

hmxobj Handle to the mixer device object that controls the specific audio line.

pmxl Pointer to a MIXERLINE structure.

fdwInfo Flags for retrieving information about an audio line.


Return value:

Returns MMSYSERR_NOERROR if successful or an error otherwise.