summaryrefslogtreecommitdiff
path: root/apps/settings.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/settings.h')
-rw-r--r--apps/settings.h17
1 files changed, 9 insertions, 8 deletions
diff --git a/apps/settings.h b/apps/settings.h
index 69f56ec870..8399874016 100644
--- a/apps/settings.h
+++ b/apps/settings.h
@@ -149,13 +149,8 @@ bool set_bool_options(char* string, bool* variable,
149bool set_bool(char* string, bool* variable ); 149bool set_bool(char* string, bool* variable );
150bool set_option(char* string, int* variable, char* options[], 150bool set_option(char* string, int* variable, char* options[],
151 int numoptions, void (*function)(int)); 151 int numoptions, void (*function)(int));
152bool set_int(char* string, 152bool set_int(char* string, char* unit, int* variable,
153 char* unit, 153 void (*function)(int), int step, int min, int max );
154 int* variable,
155 void (*function)(int),
156 int step,
157 int min,
158 int max );
159bool set_time(char* string, int timedate[]); 154bool set_time(char* string, int timedate[]);
160 155
161/* global settings */ 156/* global settings */
@@ -184,6 +179,12 @@ extern char rockboxdir[];
184enum { REPEAT_OFF, REPEAT_ALL, REPEAT_ONE, NUM_REPEAT_MODES }; 179enum { REPEAT_OFF, REPEAT_ALL, REPEAT_ONE, NUM_REPEAT_MODES };
185 180
186/* dir filter options */ 181/* dir filter options */
187enum { SHOW_ALL, SHOW_SUPPORTED, SHOW_MUSIC, NUM_FILTER_MODES }; 182enum { SHOW_ALL, SHOW_SUPPORTED, SHOW_MUSIC, SHOW_PLAYLIST, NUM_FILTER_MODES };
188 183
189#endif /* __SETTINGS_H__ */ 184#endif /* __SETTINGS_H__ */
185
186
187
188
189
190