keyboardkeyboard-shortcutskeycodevirtual-keyboardscancodes

What is the VK_KEY / scancode for this key?


I am using GetASyncKeyState (C++) to check for keys. I don't know what the name of this key is: enter image description here

How is this key named? What is the VK_ or Scancode?


Solution

  •    VK_LMENU : Left menu key (0xA4)
       VK_RMENU : Right menu key (0xA5)
    

    Source has many more interesting keys I didn't even know that exist, such as "right windows key" o.O

    Apparently, this key is reported by VK_APPS