mirror of
https://github.com/jkocon/g-helper.git
synced 2026-02-23 13:00:52 +01:00
21 lines
431 B
C#
21 lines
431 B
C#
using System;
|
|
|
|
namespace NvAPIWrapper.Native.GPU
|
|
{
|
|
/// <summary>
|
|
/// Holds possible fan cooler control modes
|
|
/// </summary>
|
|
[Flags]
|
|
public enum FanCoolersControlMode : uint
|
|
{
|
|
/// <summary>
|
|
/// Automatic fan cooler control
|
|
/// </summary>
|
|
Auto = 0,
|
|
|
|
/// <summary>
|
|
/// Manual fan cooler control
|
|
/// </summary>
|
|
Manual = 0b1,
|
|
}
|
|
} |