SetSuspendState function
Suspends the system by shutting power down. Depending on the Hibernate parameter, the system either enters a suspend (sleep) state or hibernation (S4).
Syntax
BOOLEAN WINAPI SetSuspendState( __in BOOLEAN Hibernate, __in BOOLEAN ForceCritical, __in BOOLEAN DisableWakeEvent );
Parameters
- Hibernate [in]
-
If this parameter is TRUE, the system hibernates. If the parameter is FALSE, the system is suspended.
- ForceCritical [in]
-
This parameter has no effect.
Windows Server 2003, Windows XP, and Windows 2000: If this parameter is TRUE, the system suspends operation immediately; if it is FALSE, the system broadcasts a PBT_APMQUERYSUSPEND event to each application to request permission to suspend operation. - DisableWakeEvent [in]
-
If this parameter is TRUE, the system disables all wake events. If the parameter is FALSE, any system wake events remain enabled.
Return value
If the function succeeds, the return value is nonzero.
If the function fails, the return value is zero. To get extended error information, call GetLastError.
Remarks
The calling process must have the SE_SHUTDOWN_NAME privilege. To enable the SE_SHUTDOWN_NAME privilege, use the AdjustTokenPrivileges function. For more information, see Changing Privileges in a Token.
An application may use SetSuspendState to transition the system from the working state to the standby (sleep), or optionally, hibernate (S4) state. This function is similar to the SetSystemPowerState function.
For more information on using PowrProf.h, see Power Schemes. For information about events that can wake the system, see System Wake-up Events.
Requirements
|
Minimum supported client | Windows 2000 Professional |
|---|---|
|
Minimum supported server | Windows 2000 Server |
|
Header |
|
|
Library |
|
|
DLL |
|
See also
Send comments about this topic to Microsoft
Build date: 9/7/2011
[DllImport("powrprof.dll", SetLastError = true)]
[return: MarshalAs(UnmanagedType.I1)]
public static extern bool SetSuspendState(
[In, MarshalAs(UnmanagedType.I1)] bool Hibernate,
[In, MarshalAs(UnmanagedType.I1)] bool ForceCritical,
[In, MarshalAs(UnmanagedType.I1)] bool DisableWakeEvent
);
- 11/4/2010
- dmex
- 11/3/2011
- Stanley Roark
- 4/9/2011
- TriKri
- 8/5/2010
- acc3141
