blob: 7bba141e6c362d76fe32fd5f7879be74e8734f03 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
/* config.h */
#define _GNU_SOURCE
#define VERSION "@VERSION@"
#ifndef DEBUG
#define NDEBUG
#endif
/* All these settings should eventually be configurable via libPropList */
/* Note that within the program, the first source is 0 and not 1
*/
#define DEFAULT_SOURCE 0
#define DEFAULT_MIXER_DEVICE "/dev/mixer"
/* units: seconds
*/
#define MAX_DOUBLE_CLICK_TIME 0.5
/* X11 wheel button codes (for wheel mice)
*/
#define BUTTON_WHEEL_UP 4
#define BUTTON_WHEEL_DOWN 5
/* end config.h */
|