diff options
author | Steve Bavin <pondlife@pondlife.me> | 2007-06-11 08:28:38 +0000 |
---|---|---|
committer | Steve Bavin <pondlife@pondlife.me> | 2007-06-11 08:28:38 +0000 |
commit | 24d9f59c784ab07241b51851a2683ea1c90e89e2 (patch) | |
tree | 5a9140a80bd279870a5e6d6aa4e6f0d9797eb24f /apps/talk.h | |
parent | 0fba85fe9ee8775aed331e4a9f60d91ac78ade9c (diff) | |
download | rockbox-24d9f59c784ab07241b51851a2683ea1c90e89e2.tar.gz rockbox-24d9f59c784ab07241b51851a2683ea1c90e89e2.tar.bz2 rockbox-24d9f59c784ab07241b51851a2683ea1c90e89e2.zip |
When recording, disable voice menus without actually modifying user settings. Patch FS#7272, fixes bug FS #6163
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13615 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/talk.h')
-rw-r--r-- | apps/talk.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/talk.h b/apps/talk.h index 10e49eb301..6c9bc089f8 100644 --- a/apps/talk.h +++ b/apps/talk.h @@ -71,5 +71,7 @@ int talk_file(const char* filename, bool enqueue); /* play a thumbnail from file int talk_number(long n, bool enqueue); /* say a number */ int talk_value(long n, int unit, bool enqueue); /* say a numeric value */ int talk_spell(const char* spell, bool enqueue); /* spell a string */ - +bool talk_menus_enabled(void); /* returns true if menus should be voiced */ +void talk_disable_menus(void); +void talk_enable_menus(void); #endif /* __TALK_H__ */ |