Fixed makefiles to install headers
[bcl.git] / speech.h
blobdb5c9bca6327a9e6d0557ebe5db652746c82c2fb
1 #ifndef _speech_h
2 #define _speech_h
4 #define SPEAK_BLOCKING 1
5 #define SPEAK_INTERRUPTING 2
7 extern DECLSPEC void initSpeech();
8 extern DECLSPEC void terminateSpeech();
9 extern DECLSPEC void speak(char * text,int flags);
10 extern DECLSPEC void setSpeechRate(int rate);
11 extern DECLSPEC int getSpeechRate();
12 extern DECLSPEC void setSpeechVoice(int voice);
13 extern DECLSPEC int getSpeechVoice();
15 // todo: add more prototypes
17 #endif