TranslateMessage function user32
Translates virtual-key messages into character messages. The character messages are posted to the calling thread's message queue, to be read the next time the thread calls the GetMessage or PeekMessage function.
BOOL TranslateMessage(
const MSG *lpMsg
);
Implementation
int TranslateMessage(Pointer<MSG> lpMsg) => _TranslateMessage(lpMsg);