MapVirtualKeyEx function user32
Translates (maps) a virtual-key code into a scan code or character value, or translates a scan code into a virtual-key code. The function translates the codes using the input language and an input locale identifier.
UINT MapVirtualKeyExW(
UINT uCode,
UINT uMapType,
HKL dwhkl
);
Implementation
int MapVirtualKeyEx(int uCode, int uMapType, int dwhkl) =>
_MapVirtualKeyEx(uCode, uMapType, dwhkl);