waveOutGetDevCaps function winmm

int waveOutGetDevCaps(
  1. int uDeviceID,
  2. Pointer<WAVEOUTCAPS> pwoc,
  3. int cbwoc
)

The waveOutGetDevCaps function retrieves the capabilities of a given waveform-audio output device.

MMRESULT waveOutGetDevCapsW(
  UINT          uDeviceID,
  LPWAVEOUTCAPS pwoc,
  UINT          cbwoc
);

Implementation

int waveOutGetDevCaps(int uDeviceID, Pointer<WAVEOUTCAPS> pwoc, int cbwoc) =>
    _waveOutGetDevCaps(uDeviceID, pwoc, cbwoc);