본문 바로가기

C#/WindowsAPI

C# 절전모드 / 최대 절전모드

절전모드 / 최대 절전모드

 

 

[DllImport("Powrprof.dll", CharSet=CharSet.Auto, ExactSpelling=true)]
public static extern bool SetSuspendState(bool hiberate, bool forceCritical, bool disableWakeEvent);
 
// Hibernate
SetSuspendState(true, true, true);
// Standby
SetSuspendState(false, true, true);

 

'C# > WindowsAPI' 카테고리의 다른 글

C# 키보드 인풋  (0) 2020.08.19
C# 마우스 인풋 API  (0) 2020.08.19
C# 마우스 커서 Cursor Show / Hide  (0) 2020.08.19
C# 프로그램 최상위 활성화 ForegroundWindow  (0) 2020.08.19
C# Windows API 참고사이트  (0) 2020.08.19