summaryrefslogtreecommitdiff
path: root/apps/settings.h
diff options
context:
space:
mode:
authorBertrik Sikken <bertrik@sikken.nl>2011-04-17 11:23:48 +0000
committerBertrik Sikken <bertrik@sikken.nl>2011-04-17 11:23:48 +0000
commit204a2e920acd94090e5be12b009fc71ddee8fabc (patch)
tree360605ecd71f072556109a343b92d72cfb894a53 /apps/settings.h
parent837b8ccce0d7045076d629445d58aa6725fdf5d4 (diff)
downloadrockbox-204a2e920acd94090e5be12b009fc71ddee8fabc.tar.gz
rockbox-204a2e920acd94090e5be12b009fc71ddee8fabc.zip
Move declaration of global function cfg_string_to_int to header file settings.h
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29737 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/settings.h')
-rw-r--r--apps/settings.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/settings.h b/apps/settings.h
index 7dca65ad9a..3f49cfcb2c 100644
--- a/apps/settings.h
+++ b/apps/settings.h
@@ -232,6 +232,7 @@ enum optiontype { INT, BOOL };
232 232
233const struct settings_list* find_setting(const void* variable, int *id); 233const struct settings_list* find_setting(const void* variable, int *id);
234bool cfg_int_to_string(int setting_id, int val, char* buf, int buf_len); 234bool cfg_int_to_string(int setting_id, int val, char* buf, int buf_len);
235bool cfg_string_to_int(int setting_id, int* out, const char* str);
235bool cfg_to_string(int setting_id, char* buf, int buf_len); 236bool cfg_to_string(int setting_id, char* buf, int buf_len);
236bool set_bool_options(const char* string, const bool* variable, 237bool set_bool_options(const char* string, const bool* variable,
237 const char* yes_str, int yes_voice, 238 const char* yes_str, int yes_voice,