pause can be one of the two: PAUSED or RESUME_PLAYING
To pause a specific sound call this function with the PAUSED constant.
To start playing it again call with the RESUME_PLAYING constant
Example:
STATE_sound_CD_set_pause_mode(PAUSED); this will pause the sound
your code here ....
STATE_sound_CD_set_pause_mode(RESUME_PLAYING); this will resume playing.
|