2023-09-05 22:46:18 +03:00
|
|
|
|
using System.Runtime.InteropServices;
|
2022-11-15 23:40:54 +01:00
|
|
|
|
|
|
|
|
|
|
namespace CommonHelpers
|
|
|
|
|
|
{
|
2022-11-26 20:09:30 +01:00
|
|
|
|
public enum KernelDriversLoaded : uint
|
|
|
|
|
|
{
|
|
|
|
|
|
Yes = 4363232,
|
|
|
|
|
|
No
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-11-15 23:40:54 +01:00
|
|
|
|
public enum OverlayMode : uint
|
|
|
|
|
|
{
|
|
|
|
|
|
FPS = 10032,
|
2022-11-16 20:39:21 +01:00
|
|
|
|
FPSWithBattery,
|
2025-06-10 10:47:58 -05:00
|
|
|
|
Battery,
|
2022-11-15 23:40:54 +01:00
|
|
|
|
Minimal,
|
|
|
|
|
|
Detail,
|
|
|
|
|
|
Full
|
|
|
|
|
|
}
|
2022-11-16 00:33:23 +01:00
|
|
|
|
|
|
|
|
|
|
public enum OverlayEnabled : uint
|
|
|
|
|
|
{
|
|
|
|
|
|
Yes = 378313,
|
|
|
|
|
|
No
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
|
|
|
|
public struct OverlayModeSetting
|
|
|
|
|
|
{
|
|
|
|
|
|
public OverlayMode Current, Desired;
|
|
|
|
|
|
public OverlayEnabled CurrentEnabled, DesiredEnabled;
|
2022-11-26 20:09:30 +01:00
|
|
|
|
public KernelDriversLoaded KernelDriversLoaded;
|
|
|
|
|
|
public KernelDriversLoaded DesiredKernelDriversLoaded;
|
2022-11-16 00:33:23 +01:00
|
|
|
|
}
|
2022-11-15 23:40:54 +01:00
|
|
|
|
}
|