mirror of
https://github.com/reactos/reactos.git
synced 2025-01-11 08:38:17 +00:00
- fix logic, global mouse and keyboard hooks are supported, dinput now works again
svn path=/trunk/; revision=39919
This commit is contained in:
parent
86bdd2b0e0
commit
599cdf24dd
1 changed files with 1 additions and 1 deletions
|
@ -1051,7 +1051,7 @@ NtUserSetWindowsHookEx(
|
|||
Global = TRUE;
|
||||
}
|
||||
|
||||
if ( ( Global && (HookId != WH_KEYBOARD_LL || HookId != WH_MOUSE_LL) ) ||
|
||||
if ( ( Global && (HookId != WH_KEYBOARD_LL && HookId != WH_MOUSE_LL) ) ||
|
||||
WH_DEBUG == HookId ||
|
||||
WH_JOURNALPLAYBACK == HookId ||
|
||||
WH_JOURNALRECORD == HookId)
|
||||
|
|
Loading…
Reference in a new issue