using System; namespace NvAPIWrapper.Native.Display { /// /// Flags for applying settings, used by NvAPI_DISP_SetDisplayConfig() /// [Flags] public enum DisplayConfigFlags { /// /// None /// None = 0, /// /// Do not apply /// ValidateOnly = 0x00000001, /// /// Save to the persistence storage /// SaveToPersistence = 0x00000002, /// /// Driver reload is permitted if necessary /// DriverReloadAllowed = 0x00000004, /// /// Refresh OS mode list. /// ForceModeEnumeration = 0x00000008, /// /// Tell OS to avoid optimizing CommitVidPn call during a modeset /// ForceCommitVideoPresentNetwork = 0x00000010 } }