Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
130 | ligi | 1 | #if !defined(CONFIG_H) |
2 | #define CONFIG_H |
||
3 | |||
4 | #include <confuse.h> |
||
5 | |||
6 | // values from config |
||
7 | extern char *input_evdev_name; |
||
8 | extern char *bluetooth_mac; |
||
9 | extern int mk_socket_port; |
||
10 | extern int loop_delay; |
||
11 | |||
12 | |||
13 | |||
14 | extern double nick_mul; |
||
15 | extern double roll_mul; |
||
16 | extern double gier_mul; |
||
17 | extern double gas_mul; |
||
18 | |||
19 | |||
20 | extern int rel_axis_nick; |
||
21 | extern int rel_axis_roll; |
||
22 | extern int rel_axis_gier; |
||
23 | extern int rel_axis_gas; |
||
24 | |||
25 | |||
26 | extern cfg_bool_t exit_after_init ; |
||
27 | |||
28 | |||
29 | |||
30 | int parse_config(char* fname); |
||
31 | |||
32 | #endif |