[USER32]
authorHermès Bélusca-Maïto <hermes.belusca-maito@reactos.org>
Sat, 21 Sep 2013 17:52:06 +0000 (17:52 +0000)
committerHermès Bélusca-Maïto <hermes.belusca-maito@reactos.org>
Sat, 21 Sep 2013 17:52:06 +0000 (17:52 +0000)
Stubplement IsSETEnabled, needed when testing WINSRV.DLL from Windows 2k3 SP1/2.
(this function determines whether the Shutdown Event Tracker is enabled, see http://undoc.airesoft.co.uk/user32.dll/IsSETEnabled.php for more information).

svn path=/trunk/; revision=60286

reactos/win32ss/user/user32/misc/stubs.c
reactos/win32ss/user/user32/user32.spec

index 0311d84..5014042 100644 (file)
@@ -557,6 +557,20 @@ GetReasonTitleFromReasonCode(DWORD dw1, DWORD dw2, DWORD dw3)
     return FALSE;
 }
 
+BOOL
+WINAPI
+IsSETEnabled(VOID)
+{
+    /*
+     * Determines whether the Shutdown Event Tracker is enabled.
+     *
+     * See http://undoc.airesoft.co.uk/user32.dll/IsSETEnabled.php
+     * for more information.
+     */
+    UNIMPLEMENTED;
+    return FALSE;
+}
+
 BOOL
 WINAPI
 RecordShutdownReason(DWORD dw0)
index 5b6ab0f..03330f0 100644 (file)
 @ stdcall IsMenu(long)
 @ stdcall IsRectEmpty(ptr)
 @ stdcall IsServerSideWindow(long)
+@ stdcall IsSETEnabled()
 @ stdcall IsWinEventHookInstalled(long)
 @ stdcall IsWindow(long)
 @ stdcall IsWindowEnabled(long)