mirror of
https://github.com/jkocon/g-helper.git
synced 2026-02-23 13:00:52 +01:00
23 lines
499 B
C#
23 lines
499 B
C#
namespace NvAPIWrapper.Native.Display
|
|
{
|
|
/// <summary>
|
|
/// Contains possible values for info-frame properties that accept or return a boolean value
|
|
/// </summary>
|
|
public enum InfoFrameBoolean : uint
|
|
{
|
|
/// <summary>
|
|
/// False
|
|
/// </summary>
|
|
False = 0,
|
|
|
|
/// <summary>
|
|
/// True
|
|
/// </summary>
|
|
True,
|
|
|
|
/// <summary>
|
|
/// Auto (Unspecified)
|
|
/// </summary>
|
|
Auto = 3
|
|
}
|
|
} |