MapVirtualKeyEx function user32

int MapVirtualKeyEx(
  1. int uCode,
  2. int uMapType,
  3. int dwhkl
)

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);