#ifndef _OPTIONS_H_ #define _OPTIONS_H_ void optinit(); int help(); int options(); int optperipherals(); void readoptions(); typedef struct { int id; char *name; int len; char *cfg_name; void (*ini_read)(char *str); void (*print_handler)(int id, char *str); int (*set_handler)(int id, int key, int keysym); } optionmenustruct; #endif