mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
[USER32]
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:
parent
a5bf1e54a1
commit
04c01edfae
2 changed files with 15 additions and 0 deletions
|
@ -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)
|
||||
|
|
|
@ -429,6 +429,7 @@
|
|||
@ stdcall IsMenu(long)
|
||||
@ stdcall IsRectEmpty(ptr)
|
||||
@ stdcall IsServerSideWindow(long)
|
||||
@ stdcall IsSETEnabled()
|
||||
@ stdcall IsWinEventHookInstalled(long)
|
||||
@ stdcall IsWindow(long)
|
||||
@ stdcall IsWindowEnabled(long)
|
||||
|
|
Loading…
Reference in a new issue