waveOutPause function winmm

int waveOutPause(
  1. int hwo
)

The waveOutPause function pauses playback on the given waveform-audio output device. The current position is saved. Use the waveOutRestart function to resume playback from the current position.

MMRESULT waveOutPause(
  HWAVEOUT hwo
);

Implementation

int waveOutPause(int hwo) => _waveOutPause(hwo);