waveOutGetDevCaps function winmm
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);