mirror of
https://github.com/jkocon/g-helper.git
synced 2026-02-23 13:00:52 +01:00
28 lines
684 B
C#
28 lines
684 B
C#
namespace NvAPIWrapper.Native.DRS
|
|
{
|
|
/// <summary>
|
|
/// Holds possible values for the setting location
|
|
/// </summary>
|
|
public enum DRSSettingLocation : uint
|
|
{
|
|
/// <summary>
|
|
/// Setting is part of the current profile
|
|
/// </summary>
|
|
CurrentProfile = 0,
|
|
|
|
/// <summary>
|
|
/// Setting is part of the global profile
|
|
/// </summary>
|
|
GlobalProfile,
|
|
|
|
/// <summary>
|
|
/// Setting is part of the base profile
|
|
/// </summary>
|
|
BaseProfile,
|
|
|
|
/// <summary>
|
|
/// Setting is part of the default profile
|
|
/// </summary>
|
|
DefaultProfile
|
|
}
|
|
} |