Fix for possible animatrix custom picture support on older (2021) models

This commit is contained in:
seerge
2023-03-08 19:15:21 +01:00
parent 4e6fa6d9b0
commit 8c0d84b65b
5 changed files with 75 additions and 37 deletions

View File

@@ -42,6 +42,15 @@ public class ASUSWmi
public const int GPUModeUltimate = 2;
public const int MaxTotal = 150;
public const int MinTotal = 15;
public const int DefaultTotal = 125;
public const int MaxCPU = 90;
public const int MinCPU = 15;
public const int DefaultCPU = 80;
[DllImport("kernel32.dll", SetLastError = true, CharSet = CharSet.Unicode)]
private static extern IntPtr CreateFile(
string lpFileName,