Skip to content

Latest commit

 

History

History
53 lines (36 loc) · 1.03 KB

mixerGetDevCaps.md

File metadata and controls

53 lines (36 loc) · 1.03 KB

Home

Function name : mixerGetDevCaps

Group: Windows Multimedia - Library: winmm


The mixerGetDevCaps function queries a specified mixer device to determine its capabilities.


Code examples:

Quering Audio Mixer Device

Declaration:

MMRESULT mixerGetDevCaps(
  UINT_PTR    uMxId,
  LPMIXERCAPS pmxcaps,
  UINT        cbmxcaps
);  

FoxPro declaration:

DECLARE INTEGER mixerGetDevCaps IN winmm;
	INTEGER   uMxId,;
	STRING  @ pmxcaps,;
	INTEGER   cbmxcaps
  

Parameters:

uMxId Identifier or handle of an open mixer device.

pmxcaps Pointer to a MIXERCAPS structure that receives information about the capabilities of the device.

cbmxcaps Size, in bytes, of the MIXERCAPS structure.


Return value:

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