OSDN Git Service

forgot to "git add" modified files, so re-commit:
[yamy/yamy.git] / vkeytable.h
1 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2 // vkeytable.h
3
4
5 #ifndef _VKEYTABLE_H
6 #  define _VKEYTABLE_H
7
8 #  include "misc.h"
9 #  include <tchar.h>
10
11
12 /// define virtual key code and its name
13 class VKeyTable
14 {
15 public:
16   u_int8 m_code;                                /// VKey code
17   const _TCHAR *m_name;                         /// VKey name
18 };
19
20 extern const VKeyTable g_vkeyTable[];           /** Vkey table (terminated by
21                                                     NULL) */
22
23
24 #endif // !_VKEYTABLE_H