r110: Added a option for using RISC OS mouse bindings to the options box, although
[rox-filer.git] / ROX-Filer / src / choices.h
blob70b8754a62897c21ce76d9094596cafc02a22339
1 /*
2 * $Id$
4 * By Thomas Leonard, <tal197@ecs.soton.ac.uk>.
5 */
7 #ifndef _CHOICES_H
8 #define _CHOICES_H
10 typedef struct _ChoicesList ChoicesList; /* Singly linked list */
12 struct _ChoicesList
14 char *path;
15 ChoicesList *next;
18 void choices_init(char *prog_name);
19 ChoicesList *choices_find_load_all(char *leaf, char *dir_name);
20 char *choices_find_path_load_shared(char *leaf, char *shared_name);
21 char *choices_find_path_load(char *leaf);
22 char *choices_find_path_save(char *leaf);
24 #endif /* _CHOICES_H */