Tagged Questions
The scancodes tag has no wiki summary.
3
votes
2answers
1k views
SendInput() isn't “sending” the correct shifted characters?
void WriteChar(char c)
{
INPUT input = {0};
input.type = INPUT_KEYBOARD;
input.ki.wVk= VkKeyScanEx(c, GetKeyboardLayout(0) ) ;
SendInput(1,&input, sizeof(INPUT));
}
...
2
votes
5answers
590 views
OS and implementation independent access to the keyboard?
I made an FPS game with MSVC++ which is running very well on Windows. But now I am trying to make it portable (at least I want to create a linux and a Windows version), so I decided to change the IDE ...
1
vote
2answers
352 views
Scancode when I press a key is different. Is Microsoft specification wrong?
I am using Windows XP pro SP3. Standard english keyboard. I live in the USA; never touched the keyboard settings. Stock install. So, when I press check the scancodes my program is returning they are ...
0
votes
1answer
64 views
Identify key uniquely from WM_KEYDOWN message
I tried to use the virtual key code provided by wParam, however that didn't work very well:
multiple keys mapped to the same key code
some keys were not recognized at all
virtual keys seemed to be ...
0
votes
2answers
161 views
OS X Cocoa - Translate Virtual Scan Code to and from Char
Is there a cocoa / carbon equivalent to the VkKeyScan and ToUnicode functions present on windows for translating between virtual scan codes and a unicode string? I would also like to perform this ...