using System;
namespace WindowsDisplayAPI.Native.DisplayConfig
{
///
/// Possible topology identifications
/// https://msdn.microsoft.com/en-us/library/windows/hardware/ff554001(v=vs.85).aspx
///
[Flags]
public enum DisplayConfigTopologyId : uint
{
///
/// Invalid topology identification
///
None = 0,
///
/// Indicates that the display topology is an internal configuration.
///
Internal = 0x00000001,
///
/// Indicates that the display topology is clone-view configuration.
///
Clone = 0x00000002,
///
/// Indicates that the display topology is an extended configuration.
///
Extend = 0x00000004,
///
/// Indicates that the display topology is an external configuration.
///
External = 0x00000008
}
}