I've been trying to get the unicode character for a given keycode, but i cannot figure out why i have to give so many parameters. From MSDN:
int WINAPI ToUnicode(
_In_ UINT wVirtKey,
_In_ UINT wScanCode,
_In_opt_ const BYTE *lpKeyState,
_Out_ LPWSTR pwszBuff,
_In_ int cchBuff,
_In_ UINT wFlags
);
I have a VirtualKeycode to use, but why do i need to give it a scancode as well? What is the point of have a virtualKeycode, if you also need a scancode from the keyboard?
What I have tried so far:
const unsigned int BUFFER_LENGTH = 3;
WCHAR string[BUFFER_LENGTH];
const BYTE* keyboard = new BYTE[256];
unsigned int x = 0x50; //P virtualkeycode
ToUnicode(x,0,keyboard,string,1,0)
ToUnicode returns a 0, saying that it cannot convert to Unicode.
MapVirtualKeyto try to obtain the scan code from the virtual key code. – jamesdlin May 6 at 20:12