diff options
author | Jonathan Gordon <rockbox@jdgordon.info> | 2007-02-08 04:33:41 +0000 |
---|---|---|
committer | Jonathan Gordon <rockbox@jdgordon.info> | 2007-02-08 04:33:41 +0000 |
commit | 4718a1e7526b3e7601a51c9bf55395d1950b1ffe (patch) | |
tree | c9a806f391a0d3fe3138c888c476f1ec727a6608 /apps/settings.h | |
parent | 092d355c3447a3c46d21bb7dbdf3f726ab27ec1d (diff) |
beginning of the new menu system. This commit shouldnt break anything,
but comming ones might.. report bugs in
http://forums.rockbox.org/index.php?topic=8703.0 and more info at
http://www.rockbox.org/twiki/bin/view/Main/SettingsRecode
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12227 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/settings.h')
-rw-r--r-- | apps/settings.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/settings.h b/apps/settings.h index 379084b885..8244163e2e 100644 --- a/apps/settings.h +++ b/apps/settings.h @@ -224,6 +224,10 @@ struct opt_items { unsigned const char* string; long voice_id; }; +const struct settings_list* find_setting(void* variable); +void talk_setting(void *global_settings_variable); +bool set_sound(const unsigned char * string, + int* variable, int setting); bool set_bool_options(const char* string, bool* variable, const char* yes_str, int yes_voice, const char* no_str, int no_voice, |