Re: [PATCH 1/2] kernel32: Use correct virtual-key code for the Delete key when using wineconsole
Hugh McMaster <hugh.mcmaster(a)outlook.com> writes:
VK_DEL is 0x2e. The existing code used 127 (0x7F), which is VK_F16.
These are character codes, not vkeys. -- Alexandre Julliard julliard(a)winehq.org
On Friday, 20 Nov 2015 20:55:04 +0900, Alexandre Julliard wrote:
Hugh McMaster writes:
VK_DEL is 0x2e. The existing code used 127 (0x7F), which is VK_F16.
These are character codes, not vkeys.
Yes, you are right. 127 is DEL. The changes in themselves still stand, however. VK_DEL should be used, as it matches Windows' functionality with Shift-Delete. Control-H or Control-Backspace can still be used to generate ^H.
Hugh McMaster <hugh.mcmaster(a)outlook.com> writes:
On Friday, 20 Nov 2015 20:55:04 +0900, Alexandre Julliard wrote:
Hugh McMaster writes:
VK_DEL is 0x2e. The existing code used 127 (0x7F), which is
VK_F16.
These are character codes, not vkeys.
Yes, you are right. 127 is DEL.
The changes in themselves still stand, however. VK_DEL should be used, as it matches Windows' functionality with Shift-Delete.
If you want to use vkeys, you need to change the corresponding flag in the keymap. -- Alexandre Julliard julliard(a)winehq.org
participants (2)
-
Alexandre Julliard -
Hugh McMaster