equal
deleted
inserted
replaced
|
1 /** |
|
2 * $Id: mbrola_interface.h 53 2008-01-10 00:19:41Z mbroeker $ |
|
3 * $URL: http://localhost/svn/c/VirtualReader/trunk/include/mbrola_interface.h $ |
|
4 */ |
|
5 |
|
6 #ifndef __MBROLA_INTERFACE_H__ |
|
7 #define __MBROLA_INTERFACE_H__ |
|
8 |
|
9 #include <stdio.h> |
|
10 #include <stdlib.h> |
|
11 #include <string.h> |
|
12 #include <ctype.h> |
|
13 #include <getopt.h> |
|
14 #include <MBrola.h> |
|
15 |
|
16 typedef struct { |
|
17 char *TextFile; |
|
18 char *AudioFile; |
|
19 char *Voice; |
|
20 char *Path; |
|
21 } tts_options; |
|
22 |
|
23 typedef struct { |
|
24 } ttshandles; |
|
25 |
|
26 tts_options interface_get_cl_opts (int, char **); |
|
27 |
|
28 int interface_write_to_wav (char *, char *, ttshandles, tts_options); |
|
29 ttshandles interface_init (tts_options); |
|
30 long *interface_get_timing (ttshandles, char *); |
|
31 #endif |