namespace NvAPIWrapper.Native.Display { /// /// Contains possible info-frame property modes /// public enum InfoFramePropertyMode : uint { /// /// Driver determines whether to send info-frames. /// Auto = 0, /// /// Driver always sends info-frame. /// Enable, /// /// Driver never sends info-frame. /// Disable, /// /// Driver only sends info-frame when client requests it via info-frame escape call. /// AllowOverride } }