waveOutGetID function winmm

int waveOutGetID(
  1. int hwo,
  2. Pointer<Uint32> puDeviceID
)

The waveOutGetID function retrieves the device identifier for the given waveform-audio output device.

MMRESULT waveOutGetID(
  HWAVEOUT hwo,
  LPUINT   puDeviceID
);

Implementation

int waveOutGetID(int hwo, Pointer<Uint32> puDeviceID) =>
    _waveOutGetID(hwo, puDeviceID);