shell32: Stub ShellHookProc.
This commit is contained in:
parent
25efe69d60
commit
42e54f9513
|
@ -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)
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue