Return to previous page Return to menu Go to next page

1.6 Get status

[Function Overview]


Below is a summary of the functions for each sound data.

[Calling sequence]

The following calling sequence is a process to start another sequence at pronunciation management number 0 if the sequence at pronunciation management number 0 has stopped.

void sndHantei()
{
     SndSeqStat status; / * Sequence status storage area definition * /
     ...
     SND_GetSeqStat (& status, 0); / * Get sequence status * /
     if(SND_SEQ_STAT_MODE(stauts) == SND_MD_STOP){
                                        / * Is the pronunciation management number 0 sequence stop? */
          SND_StartSeq (0, 2, 6, 0); / * Start sequence * /
     }
}


Return to previous page Return to menu Go to next page