alSeqNewMarker (function)

alSeqNewMarker, n_alSeqNewMarker

Initializes a sequence marker at a given location

Syntax

#include <libaudio.h>     /* libaudio.h */
void alSeqNewMarker(  ALSeq *seq, ALSeqMarker *m, u32 ticks);
#include <n_libaudio.h>     /* n_libaudio.h */
void n_alSeqNewMarker(ALSeq *seq, ALSeqMarker *m, u32 ticks);

Arguments

seq
Pointer to the ALSeq structure to operate on

m
Pointer to the ALSeqMarker to initialize

ticks
Sequence location, in MIDI clock ticks, to be represented by the marker

Description

alSeqNewMarker initializes a sequence marker at the location specified in ticks. The sequence marker contains sequence state information that is required to locate and play the sequence from that point.

For details on n_audio library, see "Chapter 28: n_audio library" in the N64 Programming Manual.

See Also

alSeq

Revision History

1999/04/30 Changed Format