From 4f36ea8fbf877e8af938c0bb16591f3c6cffd4f8 Mon Sep 17 00:00:00 2001 From: Jörg Hohensohn Date: Sun, 14 Mar 2004 21:33:53 +0000 Subject: 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 --- uisimulator/common/stubs.c | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'uisimulator') diff --git a/uisimulator/common/stubs.c b/uisimulator/common/stubs.c index 23a6728db4..4098c0b4c4 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; +} -- cgit v1.2.3