diff options
| author | Jörg Hohensohn <hohensoh@rockbox.org> | 2004-03-14 21:33:53 +0000 |
|---|---|---|
| committer | Jörg Hohensohn <hohensoh@rockbox.org> | 2004-03-14 21:33:53 +0000 |
| commit | 4f36ea8fbf877e8af938c0bb16591f3c6cffd4f8 (patch) | |
| tree | c0dbd4a148a54c8c2851d95149ed6d4e91053bd6 /uisimulator/common | |
| parent | 62b095d02972ac8c6fb63ab0a38d1fa0c483b85b (diff) | |
| download | rockbox-4f36ea8fbf877e8af938c0bb16591f3c6cffd4f8.zip rockbox-4f36ea8fbf877e8af938c0bb16591f3c6cffd4f8.tar.gz rockbox-4f36ea8fbf877e8af938c0bb16591f3c6cffd4f8.tar.bz2 rockbox-4f36ea8fbf877e8af938c0bb16591f3c6cffd4f8.tar.xz | |
First step of the voice-UI: the menus can talk. You need a "voicefont" file in .rockbox to use this.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4381 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator/common')
| -rw-r--r-- | uisimulator/common/stubs.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/uisimulator/common/stubs.c b/uisimulator/common/stubs.c index 23a6728..4098c0b 100644 --- a/uisimulator/common/stubs.c +++ b/uisimulator/common/stubs.c @@ -225,3 +225,22 @@ void button_set_flip(bool yesno) { (void)yesno; } + +int talk_buffer_steal(void) +{ + return 0; +} + +int talk_id(int id, bool block) +{ + (void)id; + (void)block; + return 0; +} + +int talk_file(char* filename, bool block) +{ + (void)filename; + (void)block; + return 0; +} |