You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
368 B
C

#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