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 @@
using System.Runtime.InteropServices;
using NvAPIWrapper.Native.Attributes;
using NvAPIWrapper.Native.General.Structures;
using NvAPIWrapper.Native.Interfaces;
namespace NvAPIWrapper.Native.GPU.Structures
{
[StructureVersion(2)]
[StructLayout(LayoutKind.Sequential)]
public struct PrivateActiveApplicationV2 : IInitializable
{
internal const int MaximumNumberOfApplications = 128;
internal StructureVersion _Version;
internal uint _ProcessId;
internal LongString _ProcessName;
public int ProcessId
{
get => (int) _ProcessId;
}
public string ProcessName
{
get => _ProcessName.Value;
}
}
}