waveInGetPosition function winmm

int waveInGetPosition(
  1. int hwi,
  2. Pointer<MMTIME> pmmt,
  3. int cbmmt
)

The waveInGetPosition function retrieves the current input position of the given waveform-audio input device.

MMRESULT waveInGetPosition(
  HWAVEIN  hwi,
  LPMMTIME pmmt,
  UINT     cbmmt
);

Implementation

int waveInGetPosition(int hwi, Pointer<MMTIME> pmmt, int cbmmt) =>
    _waveInGetPosition(hwi, pmmt, cbmmt);