2 * Windows hook functions
4 * Copyright 2002 Alexandre Julliard
5 * Copyright 2005 Dmitry Timoshkov
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 * Status of the various hooks:
24 * WH_JOURNALRECORD Partially implemented
25 * WH_JOURNALPLAYBACK Partially implemented
27 * WH_GETMESSAGE OK (FIXME: A/W mapping?)
28 * WH_CALLWNDPROC OK (FIXME: A/W mapping?)
36 * HCBT_CLICKSKIPPED OK
42 * WH_HARDWARE Not supported in Win32
43 * WH_DEBUG Not implemented
45 * HSHELL_WINDOWCREATED OK
46 * HSHELL_WINDOWDESTROYED OK
47 * HSHELL_ACTIVATESHELLWINDOW Not implemented
48 * HSHELL_WINDOWACTIVATED Not implemented
49 * HSHELL_GETMINRECT Not implemented
50 * HSHELL_REDRAW Not implemented
51 * HSHELL_TASKMAN Not implemented
52 * HSHELL_LANGUAGE Not implemented
53 * HSHELL_SYSMENU Not implemented
54 * HSHELL_ENDTASK Not implemented
55 * HSHELL_ACCESSIBILITYSTATE Not implemented
56 * HSHELL_APPCOMMAND Not implemented
57 * HSHELL_WINDOWREPLACED Not implemented
58 * HSHELL_WINDOWREPLACING Not implemented
59 * WH_FOREGROUNDIDLE Not implemented
60 * WH_CALLWNDPROCRET OK (FIXME: A/W mapping?)
61 * WH_KEYBOARD_LL Implemented but should use SendMessage instead
62 * WH_MOUSE_LL Implemented but should use SendMessage instead
66 #include "wine/port.h"
76 #include "user_private.h"
77 #include "wine/server.h"
78 #include "wine/unicode.h"
79 #include "wine/debug.h"
82 WINE_DEFAULT_DEBUG_CHANNEL(hook);
83 WINE_DECLARE_DEBUG_CHANNEL(relay);
91 BOOL prev_unicode, next_unicode;
92 WCHAR module[MAX_PATH];
95 #define WH_WINEVENT (WH_MAXHOOK+1)
97 static const char * const hook_names[WH_WINEVENT - WH_MINHOOK + 1] =
101 "WH_JOURNALPLAYBACK",
119 /***********************************************************************
120 * get_ll_hook_timeout
123 static UINT get_ll_hook_timeout(void)
125 /* FIXME: should retrieve LowLevelHooksTimeout in HKEY_CURRENT_USER\Control Panel\Desktop */
130 /***********************************************************************
133 * Implementation of SetWindowsHookExA and SetWindowsHookExW.
135 static HHOOK set_windows_hook( INT id, HOOKPROC proc, HINSTANCE inst, DWORD tid, BOOL unicode )
138 WCHAR module[MAX_PATH];
143 SetLastError( ERROR_INVALID_FILTER_PROC );
147 if (tid) /* thread-local hook */
149 if (id == WH_JOURNALRECORD ||
150 id == WH_JOURNALPLAYBACK ||
151 id == WH_KEYBOARD_LL ||
153 id == WH_SYSMSGFILTER)
155 /* these can only be global */
156 SetLastError( ERROR_INVALID_PARAMETER );
160 else /* system-global hook */
162 if (id == WH_KEYBOARD_LL || id == WH_MOUSE_LL) inst = 0;
165 SetLastError( ERROR_HOOK_NEEDS_HMOD );
170 if (inst && (!(len = GetModuleFileNameW( inst, module, MAX_PATH )) || len >= MAX_PATH))
172 SetLastError( ERROR_INVALID_PARAMETER );
176 SERVER_START_REQ( set_hook )
181 req->event_min = EVENT_MIN;
182 req->event_max = EVENT_MAX;
183 req->flags = WINEVENT_INCONTEXT;
184 req->unicode = unicode;
185 if (inst) /* make proc relative to the module base */
187 req->proc = wine_server_client_ptr( (void *)((char *)proc - (char *)inst) );
188 wine_server_add_data( req, module, strlenW(module) * sizeof(WCHAR) );
190 else req->proc = wine_server_client_ptr( proc );
192 if (!wine_server_call_err( req ))
194 handle = wine_server_ptr_handle( reply->handle );
195 get_user_thread_info()->active_hooks = reply->active_hooks;
200 TRACE( "%s %p %x -> %p\n", hook_names[id-WH_MINHOOK], proc, tid, handle );
205 /***********************************************************************
208 static LRESULT call_hook_AtoW( HOOKPROC proc, INT id, INT code, WPARAM wparam, LPARAM lparam )
211 UNICODE_STRING usBuffer;
212 if (id != WH_CBT || code != HCBT_CREATEWND) ret = proc( code, wparam, lparam );
215 CBT_CREATEWNDA *cbtcwA = (CBT_CREATEWNDA *)lparam;
216 CBT_CREATEWNDW cbtcwW;
219 LPWSTR classW = NULL;
222 cbtcwW.hwndInsertAfter = cbtcwA->hwndInsertAfter;
223 csW = *(CREATESTRUCTW *)cbtcwA->lpcs;
225 if (!IS_INTRESOURCE(cbtcwA->lpcs->lpszName))
227 RtlCreateUnicodeStringFromAsciiz(&usBuffer,cbtcwA->lpcs->lpszName);
228 csW.lpszName = nameW = usBuffer.Buffer;
230 if (!IS_INTRESOURCE(cbtcwA->lpcs->lpszClass))
232 RtlCreateUnicodeStringFromAsciiz(&usBuffer,cbtcwA->lpcs->lpszClass);
233 csW.lpszClass = classW = usBuffer.Buffer;
235 ret = proc( code, wparam, (LPARAM)&cbtcwW );
236 cbtcwA->hwndInsertAfter = cbtcwW.hwndInsertAfter;
237 HeapFree( GetProcessHeap(), 0, nameW );
238 HeapFree( GetProcessHeap(), 0, classW );
244 /***********************************************************************
247 static LRESULT call_hook_WtoA( HOOKPROC proc, INT id, INT code, WPARAM wparam, LPARAM lparam )
251 if (id != WH_CBT || code != HCBT_CREATEWND) ret = proc( code, wparam, lparam );
254 CBT_CREATEWNDW *cbtcwW = (CBT_CREATEWNDW *)lparam;
255 CBT_CREATEWNDA cbtcwA;
262 cbtcwA.hwndInsertAfter = cbtcwW->hwndInsertAfter;
263 csA = *(CREATESTRUCTA *)cbtcwW->lpcs;
265 if (!IS_INTRESOURCE(cbtcwW->lpcs->lpszName)) {
266 len = WideCharToMultiByte( CP_ACP, 0, cbtcwW->lpcs->lpszName, -1, NULL, 0, NULL, NULL );
267 nameA = HeapAlloc( GetProcessHeap(), 0, len*sizeof(CHAR) );
268 WideCharToMultiByte( CP_ACP, 0, cbtcwW->lpcs->lpszName, -1, nameA, len, NULL, NULL );
269 csA.lpszName = nameA;
272 if (!IS_INTRESOURCE(cbtcwW->lpcs->lpszClass)) {
273 len = WideCharToMultiByte( CP_ACP, 0, cbtcwW->lpcs->lpszClass, -1, NULL, 0, NULL, NULL );
274 classA = HeapAlloc( GetProcessHeap(), 0, len*sizeof(CHAR) );
275 WideCharToMultiByte( CP_ACP, 0, cbtcwW->lpcs->lpszClass, -1, classA, len, NULL, NULL );
276 csA.lpszClass = classA;
279 ret = proc( code, wparam, (LPARAM)&cbtcwA );
280 cbtcwW->hwndInsertAfter = cbtcwA.hwndInsertAfter;
281 HeapFree( GetProcessHeap(), 0, nameA );
282 HeapFree( GetProcessHeap(), 0, classA );
288 /***********************************************************************
291 static LRESULT call_hook_proc( HOOKPROC proc, INT id, INT code, WPARAM wparam, LPARAM lparam,
292 BOOL prev_unicode, BOOL next_unicode )
297 DPRINTF( "%04x:Call hook proc %p (id=%s,code=%x,wp=%08lx,lp=%08lx)\n",
298 GetCurrentThreadId(), proc, hook_names[id-WH_MINHOOK], code, wparam, lparam );
300 if (!prev_unicode == !next_unicode) ret = proc( code, wparam, lparam );
301 else if (prev_unicode) ret = call_hook_WtoA( proc, id, code, wparam, lparam );
302 else ret = call_hook_AtoW( proc, id, code, wparam, lparam );
305 DPRINTF( "%04x:Ret hook proc %p (id=%s,code=%x,wp=%08lx,lp=%08lx) retval=%08lx\n",
306 GetCurrentThreadId(), proc, hook_names[id-WH_MINHOOK], code, wparam, lparam, ret );
312 /***********************************************************************
315 * Retrieve the hook procedure real value for a module-relative proc
317 void *get_hook_proc( void *proc, const WCHAR *module )
321 if (!(mod = GetModuleHandleW(module)))
323 TRACE( "loading %s\n", debugstr_w(module) );
324 /* FIXME: the library will never be freed */
325 if (!(mod = LoadLibraryExW(module, NULL, LOAD_WITH_ALTERED_SEARCH_PATH))) return NULL;
327 return (char *)mod + (ULONG_PTR)proc;
330 /***********************************************************************
333 * Call hook either in current thread or send message to the destination
336 static LRESULT call_hook( struct hook_info *info, INT code, WPARAM wparam, LPARAM lparam )
342 struct hook_extra_info h_extra;
343 h_extra.handle = info->handle;
344 h_extra.lparam = lparam;
346 TRACE( "calling hook in thread %04x %s code %x wp %lx lp %lx\n",
347 info->tid, hook_names[info->id-WH_MINHOOK], code, wparam, lparam );
352 MSG_SendInternalMessageTimeout( info->pid, info->tid, WM_WINE_KEYBOARD_LL_HOOK,
353 wparam, (LPARAM)&h_extra, SMTO_ABORTIFHUNG,
354 get_ll_hook_timeout(), &ret );
357 MSG_SendInternalMessageTimeout( info->pid, info->tid, WM_WINE_MOUSE_LL_HOOK,
358 wparam, (LPARAM)&h_extra, SMTO_ABORTIFHUNG,
359 get_ll_hook_timeout(), &ret );
362 ERR("Unknown hook id %d\n", info->id);
369 TRACE( "calling hook %p %s code %x wp %lx lp %lx module %s\n",
370 info->proc, hook_names[info->id-WH_MINHOOK], code, wparam,
371 lparam, debugstr_w(info->module) );
373 if (!info->module[0] ||
374 (info->proc = get_hook_proc( info->proc, info->module )) != NULL)
376 struct user_thread_info *thread_info = get_user_thread_info();
377 HHOOK prev = thread_info->hook;
378 BOOL prev_unicode = thread_info->hook_unicode;
380 thread_info->hook = info->handle;
381 thread_info->hook_unicode = info->next_unicode;
382 ret = call_hook_proc( info->proc, info->id, code, wparam, lparam,
383 info->prev_unicode, info->next_unicode );
384 thread_info->hook = prev;
385 thread_info->hook_unicode = prev_unicode;
389 if (info->id == WH_KEYBOARD_LL || info->id == WH_MOUSE_LL)
390 get_user_thread_info()->key_state_time = 0; /* force refreshing the key state cache */
396 /***********************************************************************
399 static BOOL HOOK_IsHooked( INT id )
401 struct user_thread_info *thread_info = get_user_thread_info();
403 if (!thread_info->active_hooks) return TRUE;
404 return (thread_info->active_hooks & (1 << (id - WH_MINHOOK))) != 0;
408 /***********************************************************************
411 LRESULT HOOK_CallHooks( INT id, INT code, WPARAM wparam, LPARAM lparam, BOOL unicode )
413 struct user_thread_info *thread_info = get_user_thread_info();
414 struct hook_info info;
419 if (!HOOK_IsHooked( id ))
421 TRACE( "skipping hook %s mask %x\n", hook_names[id-WH_MINHOOK], thread_info->active_hooks );
425 ZeroMemory( &info, sizeof(info) - sizeof(info.module) );
426 info.prev_unicode = unicode;
429 SERVER_START_REQ( start_hook_chain )
432 req->event = EVENT_MIN;
433 wine_server_set_reply( req, info.module, sizeof(info.module)-sizeof(WCHAR) );
434 if (!wine_server_call( req ))
436 info.module[wine_server_reply_size(req) / sizeof(WCHAR)] = 0;
437 info.handle = wine_server_ptr_handle( reply->handle );
438 info.pid = reply->pid;
439 info.tid = reply->tid;
440 info.proc = wine_server_get_ptr( reply->proc );
441 info.next_unicode = reply->unicode;
442 thread_info->active_hooks = reply->active_hooks;
447 if (!info.tid && !info.proc) return 0;
448 ret = call_hook( &info, code, wparam, lparam );
450 SERVER_START_REQ( finish_hook_chain )
453 wine_server_call( req );
460 /***********************************************************************
461 * SetWindowsHookA (USER32.@)
463 HHOOK WINAPI SetWindowsHookA( INT id, HOOKPROC proc )
465 return SetWindowsHookExA( id, proc, 0, GetCurrentThreadId() );
469 /***********************************************************************
470 * SetWindowsHookW (USER32.@)
472 HHOOK WINAPI SetWindowsHookW( INT id, HOOKPROC proc )
474 return SetWindowsHookExW( id, proc, 0, GetCurrentThreadId() );
478 /***********************************************************************
479 * SetWindowsHookExA (USER32.@)
481 HHOOK WINAPI SetWindowsHookExA( INT id, HOOKPROC proc, HINSTANCE inst, DWORD tid )
483 return set_windows_hook( id, proc, inst, tid, FALSE );
486 /***********************************************************************
487 * SetWindowsHookExW (USER32.@)
489 HHOOK WINAPI SetWindowsHookExW( INT id, HOOKPROC proc, HINSTANCE inst, DWORD tid )
491 return set_windows_hook( id, proc, inst, tid, TRUE );
495 /***********************************************************************
496 * UnhookWindowsHook (USER32.@)
498 BOOL WINAPI UnhookWindowsHook( INT id, HOOKPROC proc )
502 TRACE( "%s %p\n", hook_names[id-WH_MINHOOK], proc );
504 SERVER_START_REQ( remove_hook )
508 req->proc = wine_server_client_ptr( proc );
509 ret = !wine_server_call_err( req );
510 if (ret) get_user_thread_info()->active_hooks = reply->active_hooks;
513 if (!ret && GetLastError() == ERROR_INVALID_HANDLE) SetLastError( ERROR_INVALID_HOOK_HANDLE );
519 /***********************************************************************
520 * UnhookWindowsHookEx (USER32.@)
522 BOOL WINAPI UnhookWindowsHookEx( HHOOK hhook )
526 SERVER_START_REQ( remove_hook )
528 req->handle = wine_server_user_handle( hhook );
530 ret = !wine_server_call_err( req );
531 if (ret) get_user_thread_info()->active_hooks = reply->active_hooks;
534 if (!ret && GetLastError() == ERROR_INVALID_HANDLE) SetLastError( ERROR_INVALID_HOOK_HANDLE );
539 /***********************************************************************
540 * CallNextHookEx (USER32.@)
542 LRESULT WINAPI CallNextHookEx( HHOOK hhook, INT code, WPARAM wparam, LPARAM lparam )
544 struct user_thread_info *thread_info = get_user_thread_info();
545 struct hook_info info;
547 ZeroMemory( &info, sizeof(info) - sizeof(info.module) );
549 SERVER_START_REQ( get_hook_info )
551 req->handle = wine_server_user_handle( thread_info->hook );
553 req->event = EVENT_MIN;
554 wine_server_set_reply( req, info.module, sizeof(info.module)-sizeof(WCHAR) );
555 if (!wine_server_call_err( req ))
557 info.module[wine_server_reply_size(req) / sizeof(WCHAR)] = 0;
558 info.handle = wine_server_ptr_handle( reply->handle );
560 info.pid = reply->pid;
561 info.tid = reply->tid;
562 info.proc = wine_server_get_ptr( reply->proc );
563 info.next_unicode = reply->unicode;
568 info.prev_unicode = thread_info->hook_unicode;
569 return call_hook( &info, code, wparam, lparam );
573 LRESULT call_current_hook( HHOOK hhook, INT code, WPARAM wparam, LPARAM lparam )
575 struct hook_info info;
577 ZeroMemory( &info, sizeof(info) - sizeof(info.module) );
579 SERVER_START_REQ( get_hook_info )
581 req->handle = wine_server_user_handle( hhook );
583 req->event = EVENT_MIN;
584 wine_server_set_reply( req, info.module, sizeof(info.module)-sizeof(WCHAR) );
585 if (!wine_server_call_err( req ))
587 info.module[wine_server_reply_size(req) / sizeof(WCHAR)] = 0;
588 info.handle = wine_server_ptr_handle( reply->handle );
590 info.pid = reply->pid;
591 info.tid = reply->tid;
592 info.proc = wine_server_get_ptr( reply->proc );
593 info.next_unicode = reply->unicode;
598 info.prev_unicode = TRUE; /* assume Unicode for this function */
599 return call_hook( &info, code, wparam, lparam );
602 /***********************************************************************
603 * CallMsgFilterA (USER32.@)
605 BOOL WINAPI CallMsgFilterA( LPMSG msg, INT code )
607 if (HOOK_CallHooks( WH_SYSMSGFILTER, code, 0, (LPARAM)msg, FALSE )) return TRUE;
608 return HOOK_CallHooks( WH_MSGFILTER, code, 0, (LPARAM)msg, FALSE );
612 /***********************************************************************
613 * CallMsgFilterW (USER32.@)
615 BOOL WINAPI CallMsgFilterW( LPMSG msg, INT code )
617 if (HOOK_CallHooks( WH_SYSMSGFILTER, code, 0, (LPARAM)msg, TRUE )) return TRUE;
618 return HOOK_CallHooks( WH_MSGFILTER, code, 0, (LPARAM)msg, TRUE );
622 /***********************************************************************
623 * SetWinEventHook [USER32.@]
625 * Set up an event hook for a set of events.
628 * event_min [I] Lowest event handled by pfnProc
629 * event_max [I] Highest event handled by pfnProc
630 * inst [I] DLL containing pfnProc
631 * proc [I] Callback event hook function
632 * pid [I] Process to get events from, or 0 for all processes
633 * tid [I] Thread to get events from, or 0 for all threads
634 * flags [I] Flags indicating the status of pfnProc
637 * Success: A handle representing the hook.
638 * Failure: A NULL handle.
640 HWINEVENTHOOK WINAPI SetWinEventHook(DWORD event_min, DWORD event_max,
641 HMODULE inst, WINEVENTPROC proc,
642 DWORD pid, DWORD tid, DWORD flags)
644 HWINEVENTHOOK handle = 0;
645 WCHAR module[MAX_PATH];
648 TRACE("%d,%d,%p,%p,%08x,%04x,%08x\n", event_min, event_max, inst,
649 proc, pid, tid, flags);
653 if (!(len = GetModuleFileNameW(inst, module, MAX_PATH)) || len >= MAX_PATH)
657 if ((flags & WINEVENT_INCONTEXT) && !inst)
659 SetLastError(ERROR_HOOK_NEEDS_HMOD);
663 if (event_min > event_max)
665 SetLastError(ERROR_INVALID_HOOK_FILTER);
669 /* FIXME: what if the tid or pid belongs to another process? */
670 if (tid) /* thread-local hook */
673 SERVER_START_REQ( set_hook )
675 req->id = WH_WINEVENT;
678 req->event_min = event_min;
679 req->event_max = event_max;
682 if (inst) /* make proc relative to the module base */
684 req->proc = wine_server_client_ptr( (void *)((char *)proc - (char *)inst) );
685 wine_server_add_data( req, module, strlenW(module) * sizeof(WCHAR) );
687 else req->proc = wine_server_client_ptr( proc );
689 if (!wine_server_call_err( req ))
691 handle = wine_server_ptr_handle( reply->handle );
692 get_user_thread_info()->active_hooks = reply->active_hooks;
697 TRACE("-> %p\n", handle);
702 /***********************************************************************
703 * UnhookWinEvent [USER32.@]
705 * Remove an event hook for a set of events.
708 * hEventHook [I] Event hook to remove
711 * Success: TRUE. The event hook has been removed.
712 * Failure: FALSE, if hEventHook is invalid.
714 BOOL WINAPI UnhookWinEvent(HWINEVENTHOOK hEventHook)
718 SERVER_START_REQ( remove_hook )
720 req->handle = wine_server_user_handle( hEventHook );
721 req->id = WH_WINEVENT;
722 ret = !wine_server_call_err( req );
723 if (ret) get_user_thread_info()->active_hooks = reply->active_hooks;
729 static inline BOOL find_first_hook(DWORD id, DWORD event, HWND hwnd, LONG object_id,
730 LONG child_id, struct hook_info *info)
732 struct user_thread_info *thread_info = get_user_thread_info();
735 if (!HOOK_IsHooked( id ))
737 TRACE( "skipping hook %s mask %x\n", hook_names[id-WH_MINHOOK], thread_info->active_hooks );
741 SERVER_START_REQ( start_hook_chain )
745 req->window = wine_server_user_handle( hwnd );
746 req->object_id = object_id;
747 req->child_id = child_id;
748 wine_server_set_reply( req, info->module, sizeof(info->module)-sizeof(WCHAR) );
749 ret = !wine_server_call( req );
752 info->module[wine_server_reply_size(req) / sizeof(WCHAR)] = 0;
753 info->handle = wine_server_ptr_handle( reply->handle );
754 info->proc = wine_server_get_ptr( reply->proc );
755 info->tid = reply->tid;
756 thread_info->active_hooks = reply->active_hooks;
760 return ret && (info->tid || info->proc);
763 static inline BOOL find_next_hook(DWORD event, HWND hwnd, LONG object_id,
764 LONG child_id, struct hook_info *info)
768 SERVER_START_REQ( get_hook_info )
770 req->handle = wine_server_user_handle( info->handle );
773 req->window = wine_server_user_handle( hwnd );
774 req->object_id = object_id;
775 req->child_id = child_id;
776 wine_server_set_reply( req, info->module, sizeof(info->module)-sizeof(WCHAR) );
777 ret = !wine_server_call( req );
780 info->module[wine_server_reply_size(req) / sizeof(WCHAR)] = 0;
781 info->handle = wine_server_ptr_handle( reply->handle );
782 info->proc = wine_server_get_ptr( reply->proc );
783 info->tid = reply->tid;
790 static inline void find_hook_close(DWORD id)
792 SERVER_START_REQ( finish_hook_chain )
795 wine_server_call( req );
800 /***********************************************************************
801 * NotifyWinEvent [USER32.@]
803 * Inform the OS that an event has occurred.
806 * event [I] Id of the event
807 * hwnd [I] Window holding the object that created the event
808 * object_id [I] Type of object that created the event
809 * child_id [I] Child object of nId, or CHILDID_SELF.
814 void WINAPI NotifyWinEvent(DWORD event, HWND hwnd, LONG object_id, LONG child_id)
816 struct hook_info info;
818 TRACE("%04x,%p,%d,%d\n", event, hwnd, object_id, child_id);
822 SetLastError(ERROR_INVALID_WINDOW_HANDLE);
829 if (event & 0x80000000)
831 /* FIXME: on 64-bit platforms we need to invent some other way for
832 * passing parameters, nId and nChildId can't hold full [W|L]PARAM.
833 * struct call_hook *hook = (LRESULT *)hWnd;
834 * wparam = hook->wparam;
835 * lparam = hook->lparam;
837 LRESULT *ret = (LRESULT *)hwnd;
838 INT id, code, unicode;
840 id = (dwEvent & 0x7fff0000) >> 16;
841 code = event & 0x7fff;
842 unicode = event & 0x8000;
843 *ret = HOOK_CallHooks(id, code, object_id, child_id, unicode);
848 if (!find_first_hook(WH_WINEVENT, event, hwnd, object_id, child_id, &info)) return;
852 WINEVENTPROC proc = info.proc;
855 TRACE( "calling WH_WINEVENT hook %p event %x hwnd %p %x %x module %s\n",
856 proc, event, hwnd, object_id, child_id, debugstr_w(info.module) );
858 if (!info.module[0] || (proc = get_hook_proc( proc, info.module )) != NULL)
861 DPRINTF( "%04x:Call winevent hook proc %p (hhook=%p,event=%x,hwnd=%p,object_id=%x,child_id=%x,tid=%04x,time=%x)\n",
862 GetCurrentThreadId(), proc, info.handle, event, hwnd, object_id,
863 child_id, GetCurrentThreadId(), GetCurrentTime());
865 proc( info.handle, event, hwnd, object_id, child_id,
866 GetCurrentThreadId(), GetCurrentTime());
869 DPRINTF( "%04x:Ret winevent hook proc %p (hhook=%p,event=%x,hwnd=%p,object_id=%x,child_id=%x,tid=%04x,time=%x)\n",
870 GetCurrentThreadId(), proc, info.handle, event, hwnd, object_id,
871 child_id, GetCurrentThreadId(), GetCurrentTime());
877 while (find_next_hook(event, hwnd, object_id, child_id, &info));
879 find_hook_close(WH_WINEVENT);
883 /***********************************************************************
884 * IsWinEventHookInstalled [USER32.@]
886 * Determine if an event hook is installed for an event.
889 * dwEvent [I] Id of the event
892 * TRUE, If there are any hooks installed for the event.
898 BOOL WINAPI IsWinEventHookInstalled(DWORD dwEvent)
900 /* FIXME: Needed by Office 2007 installer */
901 WARN("(%d)-stub!\n", dwEvent);