using System; namespace WindowsDisplayAPI.Native.DeviceContext { [Flags] internal enum DisplayDeviceStateFlags : uint { /// /// The device is part of the desktop. /// AttachedToDesktop = 0x1, MultiDriver = 0x2, /// /// The device is part of the desktop. /// PrimaryDevice = 0x4, /// /// Represents a pseudo device used to mirror application drawing for remoting or other purposes. /// MirroringDriver = 0x8, /// /// The device is VGA compatible. /// VGACompatible = 0x10, /// /// The device is removable; it cannot be the primary display. /// Removable = 0x20, /// /// The device has more display modes than its output devices support. /// ModesPruned = 0x8000000, Remote = 0x4000000, Disconnect = 0x2000000 } }