Louis Lenders : wtsapi32: Add stub for WTSUnRegisterSessionNotification.
Module: wine Branch: master Commit: 6f9bcd59be11f32d4f22eebd6835aca353b6ea15 URL: http://source.winehq.org/git/wine.git/?a=commit;h=6f9bcd59be11f32d4f22eebd68... Author: Louis Lenders <xerox_xerox2000(a)yahoo.co.uk> Date: Mon Sep 17 19:27:09 2007 +0100 wtsapi32: Add stub for WTSUnRegisterSessionNotification. --- 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 c17741c..9935d36 100644 --- a/dlls/wtsapi32/wtsapi32.c +++ b/dlls/wtsapi32/wtsapi32.c @@ -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; +} diff --git a/dlls/wtsapi32/wtsapi32.spec b/dlls/wtsapi32/wtsapi32.spec index 12e647d..059b6da 100644 --- a/dlls/wtsapi32/wtsapi32.spec +++ b/dlls/wtsapi32/wtsapi32.spec @@ -23,6 +23,7 @@ @ stub WTSSetUserConfigW @ stub WTSShutdownSystem @ stub WTSTerminateProcess +@ stdcall WTSUnRegisterSessionNotification(long) @ stub WTSVirtualChannelClose @ stub WTSVirtualChannelOpen @ stub WTSVirtualChannelPurgeInput
participants (1)
-
Alexandre Julliard