MidiStop

BOOL WINAPI MidiStop
(
	HANDLE hSequence
);

This function stops the playback of a sequence, returning its position to zero.

Parameters

Return values

TRUE if the sequence was stopped or FALSE if not. The most likely reason for an error is an invalid handle.

Remarks

The sequence must have been opened with MidiOpen or created with MidiCreate before to be stopped.

Example

HANDLE Sequence;

// Open the sequence
MidiOpen("test1.mid", DEFAULT_DEVICE, &Sequence);

// Play the sequence
MidiPlay(Sequence);

// Stop it
MidiStop(Sequence);

Further information

Released in November 19th, 2003
Updated in April 29th, 2004
Property of Breno de Lima Sarmento
Home page: http://www27.brinkster.com/brels
E-mail: [email protected]
ICQ: 78977999 ()