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/Interfaces/DRS/IDRSApplication.cs
Normal file
28
app/NvAPIWrapper/Native/Interfaces/DRS/IDRSApplication.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user