mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 20:36:26 +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"},
|
{0xe5, "GROUPSHIFT"},
|
||||||
{0xe6, "RGROUPSHIFT"}
|
{0xe6, "RGROUPSHIFT"}
|
||||||
};
|
};
|
||||||
|
/* Table of modifiers */
|
||||||
|
VKNAME Modifiers[] =
|
||||||
|
{
|
||||||
|
{0x10, "KBDSHIFT"},
|
||||||
|
{0x11, "KBDCTRL"},
|
||||||
|
{0x12, "KBDALT"}
|
||||||
|
};
|
||||||
|
|
||||||
/* ISO 110-key Keyboard Scancode to Virtual Key Conversion Table */
|
/* ISO 110-key Keyboard Scancode to Virtual Key Conversion Table */
|
||||||
SCVK ScVk[] =
|
SCVK ScVk[] =
|
||||||
|
|
|
@ -76,6 +76,7 @@ extern BOOLEAN Verbose, UnicodeFile, SanityCheck, FallbackDriver;
|
||||||
extern PCHAR gpszFileName;
|
extern PCHAR gpszFileName;
|
||||||
extern FILE* gfpInput;
|
extern FILE* gfpInput;
|
||||||
extern VKNAME VKName[];
|
extern VKNAME VKName[];
|
||||||
|
extern VKNAME Modifiers[];
|
||||||
extern SCVK ScVk[];
|
extern SCVK ScVk[];
|
||||||
extern LAYOUT g_Layout;
|
extern LAYOUT g_Layout;
|
||||||
extern CHAR gVKeyName[32];
|
extern CHAR gVKeyName[32];
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue