Add table of modifiers.

svn path=/trunk/; revision=43976
This commit is contained in:
Arch Blackmann 2009-11-05 19:24:47 +00:00
parent 43ea0e72e4
commit 75cba8f7ab
2 changed files with 8 additions and 0 deletions

View file

@ -52,6 +52,13 @@ VKNAME VKName[] =
{0xe5, "GROUPSHIFT"},
{0xe6, "RGROUPSHIFT"}
};
/* Table of modifiers */
VKNAME Modifiers[] =
{
{0x10, "KBDSHIFT"},
{0x11, "KBDCTRL"},
{0x12, "KBDALT"}
};
/* ISO 110-key Keyboard Scancode to Virtual Key Conversion Table */
SCVK ScVk[] =

View file

@ -76,6 +76,7 @@ extern BOOLEAN Verbose, UnicodeFile, SanityCheck, FallbackDriver;
extern PCHAR gpszFileName;
extern FILE* gfpInput;
extern VKNAME VKName[];
extern VKNAME Modifiers[];
extern SCVK ScVk[];
extern LAYOUT g_Layout;
extern CHAR gVKeyName[32];