mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-25 21:31:37 +00:00
We don't block ctrl+esc any more...
You should be able to use that with sys_disableWinKeys again. git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@294 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
1f7dda0006
commit
c7c0246eb4
1 changed files with 3 additions and 2 deletions
|
@ -123,8 +123,9 @@ LRESULT CALLBACK LowLevelKeyboardProc (INT nCode, WPARAM wParam, LPARAM lParam)
|
|||
}
|
||||
|
||||
// Disable CTRL+ESC
|
||||
if (pkbhs->vkCode == VK_ESCAPE && GetAsyncKeyState (VK_CONTROL) >> ((sizeof(SHORT) * 8) - 1))
|
||||
return 1;
|
||||
//this works, but we've got to give some way to tab out...
|
||||
// if (pkbhs->vkCode == VK_ESCAPE && GetAsyncKeyState (VK_CONTROL) >> ((sizeof(SHORT) * 8) - 1))
|
||||
// return 1;
|
||||
// Disable ATL+TAB
|
||||
if (pkbhs->vkCode == VK_TAB && pkbhs->flags & LLKHF_ALTDOWN)
|
||||
return 1;
|
||||
|
|
Loading…
Reference in a new issue