mirror of
https://github.com/jkocon/g-helper.git
synced 2026-02-23 13:00:52 +01:00
Experimental GPU overclock
This commit is contained in:
28
app/NvAPIWrapper/Native/DRS/DRSSettingLocation.cs
Normal file
28
app/NvAPIWrapper/Native/DRS/DRSSettingLocation.cs
Normal file
@@ -0,0 +1,28 @@
|
||||
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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user