Louis Lenders : wtsapi32: Add stub for WTSRegisterSessionNotification.

Alexandre Julliard julliard at winehq.org
Tue Sep 25 07:50:53 CDT 2007


Module: wine
Branch: master
Commit: 6b8c3688a87cbd0029736973a8762e6a49db56d9
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=6b8c3688a87cbd0029736973a8762e6a49db56d9

Author: Louis Lenders <xerox_xerox2000 at yahoo.co.uk>
Date:   Mon Sep 17 19:11:23 2007 +0100

wtsapi32: Add stub for WTSRegisterSessionNotification.

---

 dlls/wtsapi32/wtsapi32.c    |    9 +++++++++
 dlls/wtsapi32/wtsapi32.spec |    1 +
 2 files changed, 10 insertions(+), 0 deletions(-)

diff --git a/dlls/wtsapi32/wtsapi32.c b/dlls/wtsapi32/wtsapi32.c
index cec23ee..c17741c 100644
--- a/dlls/wtsapi32/wtsapi32.c
+++ b/dlls/wtsapi32/wtsapi32.c
@@ -204,3 +204,12 @@ BOOL WINAPI WTSWaitSystemEvent(HANDLE hServer, DWORD Mask, DWORD* Flags)
     FIXME("Stub %p 0x%08x %p\n", hServer, Mask, Flags);
     return FALSE;
 }
+
+/************************************************************
+ *                WTSRegisterSessionNotification (WTSAPI32.@)
+ */
+BOOL WINAPI WTSRegisterSessionNotification(HWND hWnd, DWORD dwFlags)
+{
+    FIXME("Stub %p 0x%08x\n", hWnd, dwFlags);
+    return FALSE;
+}
diff --git a/dlls/wtsapi32/wtsapi32.spec b/dlls/wtsapi32/wtsapi32.spec
index 0cfa7e3..12e647d 100644
--- a/dlls/wtsapi32/wtsapi32.spec
+++ b/dlls/wtsapi32/wtsapi32.spec
@@ -14,6 +14,7 @@
 @ stdcall WTSQuerySessionInformationW(long long long ptr ptr)
 @ stub WTSQueryUserConfigA
 @ stub WTSQueryUserConfigW
+@ stdcall WTSRegisterSessionNotification(long long)
 @ stub WTSSendMessageA
 @ stub WTSSendMessageW
 @ stub WTSSetSessionInformationA




More information about the wine-cvs mailing list