ToUnicode function user32
Translates the specified virtual-key code and keyboard state to the corresponding Unicode character or characters.
int ToUnicode(
UINT wVirtKey,
UINT wScanCode,
const BYTE *lpKeyState,
LPWSTR pwszBuff,
int cchBuff,
UINT wFlags
);
Implementation
int ToUnicode(
int wVirtKey,
int wScanCode,
Pointer<Uint8> lpKeyState,
Pointer<Utf16> pwszBuff,
int cchBuff,
int wFlags,
) => _ToUnicode(wVirtKey, wScanCode, lpKeyState, pwszBuff, cchBuff, wFlags);