mirror of
https://github.com/jkocon/g-helper.git
synced 2026-02-23 13:00:52 +01:00
15 lines
283 B
C#
15 lines
283 B
C#
namespace GHelper.AutoTDP.PowerLimiter
|
|
{
|
|
internal interface IPowerLimiter : IDisposable
|
|
{
|
|
public void SetCPUPowerLimit(double watts);
|
|
|
|
public int GetCPUPowerLimit();
|
|
|
|
public void ResetPowerLimits();
|
|
|
|
public void SavePowerLimits();
|
|
|
|
}
|
|
}
|