Rémi Bernon : include: Add VK_TO_WCHARS constants definitions to kbd.h.
Module: wine Branch: master Commit: c04f351db26c71c9f69f4cb8dd586233e3db53af URL: https://gitlab.winehq.org/wine/wine/-/commit/c04f351db26c71c9f69f4cb8dd58623... Author: Rémi Bernon <rbernon(a)codeweavers.com> Date: Wed Nov 30 20:16:09 2022 +0100 include: Add VK_TO_WCHARS constants definitions to kbd.h. --- include/kbd.h | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/include/kbd.h b/include/kbd.h index de1d2c784d2..9bbcd886b1c 100644 --- a/include/kbd.h +++ b/include/kbd.h @@ -21,6 +21,25 @@ #include "windef.h" +#define KBDBASE 0 +#define KBDSHIFT 1 +#define KBDCTRL 2 +#define KBDALT 4 +#define KBDKANA 8 +#define KBDROYA 0x10 +#define KBDLOYA 0x20 +#define KBDGRPSELTAP 0x80 + +#define WCH_NONE 0xf000 +#define WCH_DEAD 0xf001 +#define WCH_LGTR 0xf002 + +#define CAPLOK 0x01 +#define SGCAPS 0x02 +#define CAPLOKALTGR 0x04 +#define KANALOK 0x08 +#define GRPSELTAP 0x80 + typedef struct { BYTE Vk;
participants (1)
-
Alexandre Julliard