Commit f870aa49 authored by Patrick Hibbs's avatar Patrick Hibbs Committed by Alexandre Julliard

wtsapi32: Make WTSRegisterSessionNotificationEx's return consistent with…

wtsapi32: Make WTSRegisterSessionNotificationEx's return consistent with WTSRegisterSessionNotification. Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=47433Signed-off-by: 's avatarPatrick Hibbs <hibbsncc1701@gmail.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent 88a3a584
......@@ -385,7 +385,7 @@ BOOL WINAPI WTSRegisterSessionNotification(HWND hWnd, DWORD dwFlags)
BOOL WINAPI WTSRegisterSessionNotificationEx(HANDLE hServer, HWND hWnd, DWORD dwFlags)
{
FIXME("Stub %p %p 0x%08x\n", hServer, hWnd, dwFlags);
return FALSE;
return TRUE;
}
......
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