MusicPlayerSetSequence

Function MusicPlayerSetSequence 

Source
pub unsafe extern "C-unwind" fn MusicPlayerSetSequence(
    in_player: MusicPlayer,
    in_sequence: MusicSequence,
) -> i32
Available on crate feature MusicPlayer only.
Expand description

Set the sequence for the player to play

A Sequence cannot be set on a player while it is playing. Setting a sequence will overide the currently set sequence.

Parameter inPlayer: the player

Parameter inSequence: the sequence for the player to play

ยงSafety

  • in_player must be a valid pointer.
  • in_sequence must be a valid pointer or null.