using System; namespace WindowsDisplayAPI.Native.DisplayConfig { /// /// Possible values for QueryDisplayConfig() flags property /// https://msdn.microsoft.com/en-us/library/windows/hardware/ff569215(v=vs.85).aspx /// [Flags] public enum QueryDeviceConfigFlags : uint { /// /// All the possible path combinations of sources to targets. /// AllPaths = 0x00000001, /// /// Currently active paths only. /// OnlyActivePaths = 0x00000002, /// /// Active path as defined in the CCD database for the currently connected displays. /// DatabaseCurrent = 0x00000004, /// /// Virtual Mode Aware /// VirtualModeAware = 0x0000010 } }