Added speech interface.
[bcl.git] / speech.h
blob57c0af979479aedcb47a5e372a2ff059851892db
1 #ifndef _speech_h
2 #define _speech_h
4 void initSpeech();
5 void terminateSpeech();
6 void speak(char * text);
7 void setSpeechRate(int rate);
8 int getSpeechRate();
9 void setSpeechVoice(int voice);
10 int getSpeechVoice();
11 // todo: add more prototypes
13 #endif