waveInGetDevCaps function winmm

int waveInGetDevCaps(
  1. int uDeviceID,
  2. Pointer<WAVEINCAPS> pwic,
  3. int cbwic
)

Retrieves the capabilities of a given waveform-audio input device.

To learn more, see learn.microsoft.com/windows/win32/api/mmeapi/nf-mmeapi-waveingetdevcaps.

Implementation

@pragma('vm:prefer-inline')
int waveInGetDevCaps(int uDeviceID, Pointer<WAVEINCAPS> pwic, int cbwic) =>
    _waveInGetDevCaps(uDeviceID, pwic, cbwic);