wtsapi32: Add stub for WTSUnRegisterSessionNotification.
This commit is contained in:
parent
6b8c3688a8
commit
6f9bcd59be
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue