mirror of
https://github.com/reactos/reactos.git
synced 2025-01-05 22:12:46 +00:00
Add table of modifiers.
svn path=/trunk/; revision=43976
This commit is contained in:
parent
43ea0e72e4
commit
75cba8f7ab
2 changed files with 8 additions and 0 deletions
|
@ -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[] =
|
||||
|
|
|
@ -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];
|
||||
|
|
Loading…
Reference in a new issue