문제

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?

도움이 되었습니까?

해결책

   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

다른 팁

VK_APPS is an extended key and its scan code is D5E0 (D5E1 on some systems). More on Windows key maps here.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top