waveInGetDevCaps function winmm

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

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);