码迷,mamicode.com
首页 > 其他好文 > 详细

用GetKeyState判断指定按键是否按下

时间:2016-05-14 00:56:55      阅读:2290      评论:0      收藏:0      [点我收藏+]

标签:

SHORT GetKeyState(int nVirtKey /* virtual-key code,eg.VK_F1 */);
 
//If the high-order bit is 1, the key is down; otherwise, it is up.
//If the low-order bit is 1, the key is toggled.
 
//例如:
GetKeyState(VK_MENU) & 0x8000
//Alt按下
 
GetKeyState(VK_CONTROL) & 0x8000
//Ctrl按下

 

用GetKeyState判断指定按键是否按下

标签:

原文地址:http://www.cnblogs.com/dgx/p/5491561.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!