OSDN Git Service

change EOL style to CRLF to adjust to default setting of Visual Studio
[yamy/yamy.git] / vkeytable.h
1 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\r
2 // vkeytable.h\r
3 \r
4 \r
5 #ifndef _VKEYTABLE_H\r
6 #  define _VKEYTABLE_H\r
7 \r
8 #  include "misc.h"\r
9 #  include <tchar.h>\r
10 \r
11 \r
12 /// define virtual key code and its name\r
13 class VKeyTable\r
14 {\r
15 public:\r
16   u_int8 m_code;                                /// VKey code\r
17   const _TCHAR *m_name;                         /// VKey name\r
18 };\r
19 \r
20 extern const VKeyTable g_vkeyTable[];           /** Vkey table (terminated by\r
21                                                     NULL) */\r
22 \r
23 \r
24 #endif // !_VKEYTABLE_H\r