using System;
namespace NvAPIWrapper.Native.Mosaic
{
///
/// Possible display problems in a topology validation process
///
[Flags]
public enum DisplayTopologyWarning : uint
{
///
/// No warning
///
NoWarning = 0,
///
/// Display position is problematic
///
DisplayPosition = 1,
///
/// Driver reload is required for this changes
///
DriverReloadRequired = 2
}
}