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
This commit is contained in:
Hermès Bélusca-Maïto 2013-09-21 17:52:06 +00:00
parent a5bf1e54a1
commit 04c01edfae
2 changed files with 15 additions and 0 deletions

View 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)

View file

@ -429,6 +429,7 @@
@ stdcall IsMenu(long)
@ stdcall IsRectEmpty(ptr)
@ stdcall IsServerSideWindow(long)
@ stdcall IsSETEnabled()
@ stdcall IsWinEventHookInstalled(long)
@ stdcall IsWindow(long)
@ stdcall IsWindowEnabled(long)