2021-01-24 23:02:00 +00:00
|
|
|
using System;
|
|
|
|
using System.Runtime.InteropServices;
|
|
|
|
|
2022-12-15 17:07:31 +00:00
|
|
|
namespace Ryujinx.Common.SystemInterop
|
2021-01-24 23:02:00 +00:00
|
|
|
{
|
2022-12-15 17:07:31 +00:00
|
|
|
public partial class DisplaySleep
|
2021-01-24 23:02:00 +00:00
|
|
|
{
|
|
|
|
[Flags]
|
|
|
|
enum EXECUTION_STATE : uint
|
|
|
|
{
|
|
|
|
ES_CONTINUOUS = 0x80000000,
|
|
|
|
ES_DISPLAY_REQUIRED = 0x00000002,
|
|
|
|
ES_SYSTEM_REQUIRED = 0x00000001
|
|
|
|
}
|
|
|
|
|
2022-12-15 17:07:31 +00:00
|
|
|
[LibraryImport("kernel32.dll", SetLastError = true)]
|
|
|
|
private static partial EXECUTION_STATE SetThreadExecutionState(EXECUTION_STATE esFlags);
|
2021-01-24 23:02:00 +00:00
|
|
|
|
|
|
|
static public void Prevent()
|
|
|
|
{
|
2021-12-04 23:02:30 +00:00
|
|
|
if (OperatingSystem.IsWindows())
|
2021-01-24 23:02:00 +00:00
|
|
|
{
|
|
|
|
SetThreadExecutionState(EXECUTION_STATE.ES_CONTINUOUS | EXECUTION_STATE.ES_SYSTEM_REQUIRED | EXECUTION_STATE.ES_DISPLAY_REQUIRED);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static public void Restore()
|
|
|
|
{
|
2021-12-04 23:02:30 +00:00
|
|
|
if (OperatingSystem.IsWindows())
|
2021-01-24 23:02:00 +00:00
|
|
|
{
|
|
|
|
SetThreadExecutionState(EXECUTION_STATE.ES_CONTINUOUS);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|