first commit
This commit is contained in:
22
AsusFanControl/AsusWinIO64.cs
Normal file
22
AsusFanControl/AsusWinIO64.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
namespace AsusSystemAnalysis
|
||||
{
|
||||
public class AsusWinIO64
|
||||
{
|
||||
[DllImport("AsusWinIO64.dll")]
|
||||
public static extern void InitializeWinIo();
|
||||
[DllImport("AsusWinIO64.dll")]
|
||||
public static extern void ShutdownWinIo();
|
||||
[DllImport("AsusWinIO64.dll")]
|
||||
public static extern int HealthyTable_FanCounts();
|
||||
[DllImport("AsusWinIO64.dll")]
|
||||
public static extern void HealthyTable_SetFanIndex(byte index);
|
||||
[DllImport("AsusWinIO64.dll")]
|
||||
public static extern int HealthyTable_FanRPM();
|
||||
[DllImport("AsusWinIO64.dll")]
|
||||
public static extern void HealthyTable_SetFanTestMode(char mode);
|
||||
[DllImport("AsusWinIO64.dll")]
|
||||
public static extern void HealthyTable_SetFanPwmDuty(short duty);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user