shell32: Stub ShellHookProc.

This commit is contained in:
Aric Stewart 2009-09-24 13:54:33 -05:00 committed by Alexandre Julliard
parent 25efe69d60
commit 42e54f9513
2 changed files with 10 additions and 1 deletions

View File

@ -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)

View File

@ -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;
}