waveInMessage function winmm

int waveInMessage(
  1. HWAVEIN? hwi,
  2. int uMsg,
  3. int? dw1,
  4. int? dw2,
)

Sends messages to the waveform-audio input device drivers.

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

Implementation

@pragma('vm:prefer-inline')
int waveInMessage(HWAVEIN? hwi, int uMsg, int? dw1, int? dw2) =>
    _waveInMessage(hwi ?? nullptr, uMsg, dw1 ?? NULL, dw2 ?? NULL);