Hans Leidekker : wtsapi32: Return success from WTSRegisterSessionNotification.
Module: wine Branch: master Commit: fddbf3b99d6582c50ede10dfddd8d438bea0ca8a URL: http://source.winehq.org/git/wine.git/?a=commit;h=fddbf3b99d6582c50ede10dfdd... Author: Hans Leidekker <hans(a)codeweavers.com> Date: Tue Sep 27 11:39:41 2011 +0200 wtsapi32: Return success from WTSRegisterSessionNotification. --- dlls/wtsapi32/wtsapi32.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/wtsapi32/wtsapi32.c b/dlls/wtsapi32/wtsapi32.c index c500b53..875cfb5 100644 --- a/dlls/wtsapi32/wtsapi32.c +++ b/dlls/wtsapi32/wtsapi32.c @@ -277,7 +277,7 @@ BOOL WINAPI WTSQueryUserConfigW(LPWSTR pServerName, LPWSTR pUserName, WTS_CONFIG BOOL WINAPI WTSRegisterSessionNotification(HWND hWnd, DWORD dwFlags) { FIXME("Stub %p 0x%08x\n", hWnd, dwFlags); - return FALSE; + return TRUE; } /************************************************************
participants (1)
-
Alexandre Julliard