namespace NvAPIWrapper.Native.DRS
{
///
/// Holds possible values for the setting location
///
public enum DRSSettingLocation : uint
{
///
/// Setting is part of the current profile
///
CurrentProfile = 0,
///
/// Setting is part of the global profile
///
GlobalProfile,
///
/// Setting is part of the base profile
///
BaseProfile,
///
/// Setting is part of the default profile
///
DefaultProfile
}
}