-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFieldNames.h
More file actions
30 lines (27 loc) · 759 Bytes
/
FieldNames.h
File metadata and controls
30 lines (27 loc) · 759 Bytes
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
28
29
30
#ifndef __FIELD_NAMES_H__
#define __FIELD_NAMES_H__
/* include the config file */
/* Define True or false */
#ifndef false
#define false 0
#endif
#ifndef true
#define true 1
#endif
#define DELAY "Delay"
#define BUTTON_PRESS "ButtonPress"
#define BUTTON_RELEASE "ButtonRelease"
#define MOTION_NOTIFY "MotionNotify"
#define KEY_CODE_PRESS "KeyCodePress"
#define KEY_CODE_RELEASE "KeyCodeRelease"
#define SCREENSHOT "Screenshot"
#define KEY_SYM_PRESS "KeySymPress"
#define KEY_SYM_RELEASE "KeySymRelease"
#define KEY_SYM "KeySym"
#define KEY_STR_PRESS "KeyStrPress"
#define KEY_STR_RELEASE "KeyStrRelease"
#define KEY_STR "KeyStr"
#define STRING "String"
#define EXEC_BLOCK "ExecBlock"
#define EXEC_NO_BLOCK "ExecNoBlock"
#endif