r44: Greatly improved the options system. Choice of xterm process is now
[rox-filer.git] / ROX-Filer / src / options.h
blobc28a6e6b0c7d73813f8c108564a0a659a93b69d2
1 /* vi: set cindent:
2 * $Id$
4 * ROX-Filer, filer for the ROX desktop project
5 * By Thomas Leonard, <tal197@ecs.soton.ac.uk>.
6 */
8 #ifndef _OPTIONS_H
9 #define _OPTIONS_H
11 typedef char *OptionFunc(char *value);
13 #include "filer.h"
15 /* Prototypes */
17 void options_init(void);
18 void option_register(char *key, OptionFunc *func);
19 void options_load(void);
20 void options_show(FilerWindow *filer_window);
21 void option_write(char *name, char *value);
23 #endif /* _OPTIONS_H */