Module: wine Branch: master Commit: 42e54f9513340e3d1d267ab627924148be81b68f URL: http://source.winehq.org/git/wine.git/?a=commit;h=42e54f9513340e3d1d267ab627...
Author: Aric Stewart aric@codeweavers.com Date: Thu Sep 24 13:54:33 2009 -0500
shell32: Stub ShellHookProc.
---
dlls/shell32/shell32.spec | 2 +- dlls/shell32/shell32_main.c | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletions(-)
diff --git a/dlls/shell32/shell32.spec b/dlls/shell32/shell32.spec index 2eb5934..546e6a5 100644 --- a/dlls/shell32/shell32.spec +++ b/dlls/shell32/shell32.spec @@ -408,7 +408,7 @@ @ stdcall ShellExecuteExA (long) @ stdcall ShellExecuteExW (long) @ stdcall ShellExecuteW (long wstr wstr wstr wstr long) -@ stub ShellHookProc +@ stdcall ShellHookProc(long long long) @ stdcall Shell_NotifyIcon(long ptr) Shell_NotifyIconA @ stdcall Shell_NotifyIconA(long ptr) @ stdcall Shell_NotifyIconW(long ptr) diff --git a/dlls/shell32/shell32_main.c b/dlls/shell32/shell32_main.c index f3f8725..2334e62 100644 --- a/dlls/shell32/shell32_main.c +++ b/dlls/shell32/shell32_main.c @@ -1220,3 +1220,12 @@ BOOL WINAPI InitNetworkAddressControl(void) FIXME("stub\n"); return FALSE; } + +/*********************************************************************** + * ShellHookProc (SHELL32.@) + */ +LRESULT CALLBACK ShellHookProc(DWORD a, DWORD b, DWORD c) +{ + FIXME("Stub\n"); + return 0; +}