From 42e54f9513340e3d1d267ab627924148be81b68f Mon Sep 17 00:00:00 2001 From: Aric Stewart Date: Thu, 24 Sep 2009 13:54:33 -0500 Subject: [PATCH] shell32: Stub ShellHookProc. --- dlls/shell32/shell32.spec | 2 +- dlls/shell32/shell32_main.c | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/dlls/shell32/shell32.spec b/dlls/shell32/shell32.spec index 2eb5934a101..546e6a574e6 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 f3f87259440..2334e626fa2 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; +} -- 2.11.4.GIT