namespace WindowsDisplayAPI.Native.DeviceContext
{
///
/// Contains possible values for the result of mode change request
///
public enum ChangeDisplaySettingsExResults
{
///
/// Completed successfully
///
Successful = 0,
///
/// Changes needs restart
///
Restart = 1,
///
/// Failed to change and save setings
///
Failed = -1,
///
/// Invalid data provide
///
BadMode = -2,
///
/// Changes not updated
///
NotUpdated = -3,
///
/// Invalid flags provided
///
BadFlags = -4,
///
/// Bad parameters provided
///
BadParam = -5,
///
/// Bad Dual View mode used with mode
///
BadDualView = -6
}
}