-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.h
More file actions
23 lines (16 loc) · 693 Bytes
/
Copy pathconfig.h
File metadata and controls
23 lines (16 loc) · 693 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef PUTNO_CONFIG
# define PUTNO_CONFIG
// Buffer timeout (0 - disable timeout):
# define BUFFER_TIMEOUT_SECONDS 3 * 60
// DEFAULT_HOTKEY_NUMBER macro must be at least SET. Values supported:
// 2 - for Ctrl+Shift hotkey
// 4 - for [`~] hotkey
// 1 (or any other) - Alt+Shift (default)
# define DEFAULT_HOTKEY_NUMBER 1
// Detection requires Registry access which significally affects the app's size :(
// But it is handful! So you may chose (0 = disabled, DEFAULT_HOTKEY_NUMBER macro will used;
// 1 = enabled, compiler will produce larger file):
# define AUTODETECT_HOTKEY 1
// Single word buffer size:
const int BUFFER_SIZE=500;
#endif //ifndef PUTNO_CONFIG