r79: Added choices_find_load_all() - now ALL 'guess' files are loaded and merged,
[rox-filer.git] / ROX-Filer / src / choices.h
blobdb443a1a2cea4f44dba528eeeabbc4124d63ca50
1 /* vi: set cindent:
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 */