mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
- Fix loading hooks.
svn path=/trunk/; revision=34777
This commit is contained in:
parent
f123580aa0
commit
4e945c2292
1 changed files with 4 additions and 8 deletions
|
@ -1003,14 +1003,10 @@ NtUserSetWindowsHookEx(
|
|||
/* We only (partially) support local WH_CBT hooks and
|
||||
* WH_KEYBOARD_LL, WH_MOUSE_LL and WH_GETMESSAGE hooks for now
|
||||
*/
|
||||
if (WH_CALLWNDPROC == HookId &&
|
||||
WH_CALLWNDPROCRET == HookId &&
|
||||
WH_DEBUG == HookId &&
|
||||
WH_JOURNALPLAYBACK == HookId &&
|
||||
WH_JOURNALRECORD == HookId &&
|
||||
WH_FOREGROUNDIDLE == HookId &&
|
||||
WH_KEYBOARD == HookId &&
|
||||
WH_MOUSE == HookId &&
|
||||
if (WH_DEBUG == HookId ||
|
||||
WH_JOURNALPLAYBACK == HookId ||
|
||||
WH_JOURNALRECORD == HookId ||
|
||||
WH_FOREGROUNDIDLE == HookId ||
|
||||
WH_SHELL == HookId)
|
||||
{
|
||||
#if 0 /* Removed to get winEmbed working again */
|
||||
|
|
Loading…
Reference in a new issue