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