1 /* -*-c-*- */
2 #ifndef IN_READCONFIG_H
3 #define IN_READCONFIG_H
4 
5 #define MODS_USED ((ALL_MODIFIERS) & ~(LockMask))
6 
7 typedef enum
8 {
9 	READ_LINE = 1,
10 	READ_OPTION = 2,
11 	READ_ARG = 4,
12 	READ_REST_OF_LINE = 12,
13 } ReadOption;
14 
15 extern void read_in_resources(void);
16 extern void print_bindings(Binding *list);
17 extern void print_args(int numargs, BuiltinArg *args);
18 extern Binding *ParseMouseEntry(char *tline);
19 
20 extern void run_function_list(Function *func);
21 extern void run_binding(WinManager *man, Action action);
22 
23 #endif /* IN_READCONFIG_H */
24