libxdo
xdo_util.h
1 /* xdo utility pieces
2  *
3  * $Id$
4  */
5 
6 #ifndef _XDO_UTIL_H_
7 #define _XDO_UTIL_H_
8 
9 #include "xdo.h"
10 
11 /* human to Keysym string mapping */
12 static const char *symbol_map[] = {
13  "alt", "Alt_L",
14  "ctrl", "Control_L",
15  "control", "Control_L",
16  "meta", "Meta_L",
17  "super", "Super_L",
18  "shift", "Shift_L",
19  NULL, NULL,
20 };
21 
22 #endif /* ifndef _XDO_UTIL_H_ */