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:
Spoike 2004-10-03 10:19:58 +00:00
parent 1f7dda0006
commit c7c0246eb4
1 changed files with 3 additions and 2 deletions

View File

@ -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;