We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d002500 commit cc94921Copy full SHA for cc94921
include/vsg/platform/win32/Win32_Window.h
@@ -41,7 +41,6 @@ namespace vsgWin32
41
uint16_t modifierMask = 0;
42
43
// see https://learn.microsoft.com/en-us/windows/win32/inputdev/about-keyboard-input#keystroke-message-flags
44
- WORD vkCode = LOWORD(wParam); // virtual-key code
45
WORD keyFlags = HIWORD(lParam);
46
WORD scanCode = LOBYTE(keyFlags); // scan code
47
BOOL isExtendedKey = (keyFlags & KF_EXTENDED) == KF_EXTENDED; // extended-key flag, 1 if scancode has 0xE0 prefix
0 commit comments