using System;
namespace NvAPIWrapper.Native.GPU
{
///
/// Flags used for retrieving a list of display identifications
///
[Flags]
public enum ConnectedIdsFlag : uint
{
///
/// No specific flag
///
None = 0,
///
/// Get un-cached connected devices
///
UnCached = 1,
///
/// Get devices such that those can be selected in an SLI configuration
///
SLI = 2,
///
/// Get devices such that to reflect the Lid State
///
LidState = 4,
///
/// Get devices that includes the fake connected monitors
///
Fake = 8,
///
/// Excludes devices that are part of the multi stream topology
///
ExcludeList = 16
}
}