Skip to content

Latest commit

 

History

History
42 lines (29 loc) · 973 Bytes

waveOutReset.md

File metadata and controls

42 lines (29 loc) · 973 Bytes

Home

Function name : waveOutReset

Group: Windows Multimedia - Library: winmm


The waveOutReset function stops playback on the given waveform-audio output device and resets the current position to zero. All pending playback buffers are marked as done and returned to the application.


Code examples:

WAV file player
Playing WAV sounds simultaneously

Declaration:

MMRESULT waveOutReset(
  HWAVEOUT hwo
);  

FoxPro declaration:

DECLARE INTEGER waveOutReset IN winmm;
	INTEGER hwo  

Parameters:

hwo Handle to the waveform-audio output device returned by waveOutOpen.


Return value:

Returns MMSYSERR_NOERROR (0) if successful or an error otherwise.