waveInGetDevCaps function winmm
The waveInGetDevCaps function retrieves the capabilities of a given waveform-audio input device.
MMRESULT waveInGetDevCapsW(
UINT uDeviceID,
LPWAVEINCAPS pwic,
UINT cbwic
);
Implementation
int waveInGetDevCaps(int uDeviceID, Pointer<WAVEINCAPS> pwic, int cbwic) =>
_waveInGetDevCaps(uDeviceID, pwic, cbwic);