Experimental GPU overclock

This commit is contained in:
Serge
2023-05-06 14:40:52 +02:00
parent 8e1099545a
commit c61f4d1608
497 changed files with 46937 additions and 232 deletions

View File

@@ -0,0 +1,28 @@
namespace NvAPIWrapper.Native.Interfaces.DRS
{
/// <summary>
/// Represents an application rule registered in a profile
/// </summary>
public interface IDRSApplication
{
/// <summary>
/// Gets the application name
/// </summary>
string ApplicationName { get; }
/// <summary>
/// Gets the application friendly name
/// </summary>
string FriendlyName { get; }
/// <summary>
/// Gets a boolean value indicating if this application is predefined as part of NVIDIA driver
/// </summary>
bool IsPredefined { get; }
/// <summary>
/// Gets the application launcher name.
/// </summary>
string LauncherName { get; }
}
}