repo.or.cz
/
bcl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Added speech interface.
[bcl.git]
/
speech.h
blob
57c0af979479aedcb47a5e372a2ff059851892db
1
#ifndef _speech_h
2
#define _speech_h
3
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
12
13
#endif