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:
12
app/NvAPIWrapper/Native/Interfaces/IAllocatable.cs
Normal file
12
app/NvAPIWrapper/Native/Interfaces/IAllocatable.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System;
|
||||
|
||||
namespace NvAPIWrapper.Native.Interfaces
|
||||
{
|
||||
/// <summary>
|
||||
/// Marker interface for all types that should be allocated before passing to the managed code
|
||||
/// </summary>
|
||||
internal interface IAllocatable : IInitializable, IDisposable
|
||||
{
|
||||
void Allocate();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user