cvsimport
[fvwm.git] / modules / FvwmIconMan / readconfig.h
blob1de38c4f370eb9a491c09004c3c4ba6a74072cee
1 /* -*-c-*- */
2 #ifndef IN_READCONFIG_H
3 #define IN_READCONFIG_H
5 #define MODS_USED ((ALL_MODIFIERS) & ~(LockMask))
7 typedef enum
9 READ_LINE = 1,
10 READ_OPTION = 2,
11 READ_ARG = 4,
12 READ_REST_OF_LINE = 12,
13 } ReadOption;
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);
20 extern void run_function_list(Function *func);
21 extern void run_binding(WinManager *man, Action action);
23 #endif /* IN_READCONFIG_H */