简体   繁体   中英

(C++) Disabling Alt commands in Windows

I'm making a program that needs to block all input during a short critical section. I used BlockInput, but it still allows the user to use hotkeys like Ctrl+Alt+F1 or Ctrl+Alt+F2 (switching taskbar in both displays). It is crucial that the user is not able to use these two hotkeys.

I read some things about a hook, but I'm not sure where to start with this solution. Any help would be greatly appreciated.

Thanks!

A keyboard hook could do the trick - check out SetWindowsHookEx . Note that it gets tricky on 64-bit systems.

But may I suggest simply setting your process/thread priority to some ludicrously high value? Windows will really favor your process then, and at the highest settings even keyboard and mouse stopped working - I found that out the hard way. :)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM