Commit 6f9bcd59 authored by Louis Lenders's avatar Louis Lenders Committed by Alexandre Julliard

wtsapi32: Add stub for WTSUnRegisterSessionNotification.

parent 6b8c3688
......@@ -213,3 +213,12 @@ BOOL WINAPI WTSRegisterSessionNotification(HWND hWnd, DWORD dwFlags)
FIXME("Stub %p 0x%08x\n", hWnd, dwFlags);
return FALSE;
}
/************************************************************
* WTSUnRegisterSessionNotification (WTSAPI32.@)
*/
BOOL WINAPI WTSUnRegisterSessionNotification(HWND hWnd)
{
FIXME("Stub %p\n", hWnd);
return FALSE;
}
......@@ -23,6 +23,7 @@
@ stub WTSSetUserConfigW
@ stub WTSShutdownSystem
@ stub WTSTerminateProcess
@ stdcall WTSUnRegisterSessionNotification(long)
@ stub WTSVirtualChannelClose
@ stub WTSVirtualChannelOpen
@ stub WTSVirtualChannelPurgeInput
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment