summaryrefslogtreecommitdiff
path: root/apps/settings.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/settings.h')
-rw-r--r--apps/settings.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/apps/settings.h b/apps/settings.h
index 9b1124dbae..33dfb8546a 100644
--- a/apps/settings.h
+++ b/apps/settings.h
@@ -247,12 +247,6 @@ struct opt_items {
247 unsigned const char* string; 247 unsigned const char* string;
248 long voice_id; 248 long voice_id;
249}; 249};
250
251struct opt_settings {
252 int* setting;
253 int setting_max;
254};
255
256const struct settings_list* find_setting(void* variable, int *id); 250const struct settings_list* find_setting(void* variable, int *id);
257bool cfg_int_to_string(int setting_id, int val, char* buf, int buf_len); 251bool cfg_int_to_string(int setting_id, int val, char* buf, int buf_len);
258void talk_setting(void *global_settings_variable); 252void talk_setting(void *global_settings_variable);
@@ -270,9 +264,6 @@ bool set_int(const unsigned char* string, const char* unit, int voice_unit,
270 int* variable, 264 int* variable,
271 void (*function)(int), int step, int min, int max, 265 void (*function)(int), int step, int min, int max,
272 void (*formatter)(char*, int, int, const char*) ); 266 void (*formatter)(char*, int, int, const char*) );
273bool set_multi_int(const char* string, const struct opt_items * names,
274 struct opt_settings * variable, int varcount,
275 bool * changes_accepted);
276/* use this one if you need to create a lang from the value (i.e with TALK_ID()) */ 267/* use this one if you need to create a lang from the value (i.e with TALK_ID()) */
277bool set_int_ex(const unsigned char* string, const char* unit, int voice_unit, 268bool set_int_ex(const unsigned char* string, const char* unit, int voice_unit,
278 int* variable, 269 int* variable,