Version 1 (modified by 14 years ago) ( diff ) | ,
---|
PlayNotes
Play simple music notes on the beeper.
void PlayNotes(const string& strNotes); void PlayNotes(const char* pszNotes);
Parameters
- strNotes - string containing notes to play
- pszNotes - character array pointer containing notes to play
Return Value
- void - does not return any value
Remarks
- Any application that will use PlayNotes must call OpenBeeeper first.
Examples
string str = "A,B,C"; PlayNotes(str);
PlayNotes("A,B,C");
See Also
Note:
See TracWiki
for help on using the wiki.