Files
archived-g-helper/app/NvAPIWrapper/Native/Interfaces/IAllocatable.cs
2023-05-06 14:40:52 +02:00

12 lines
305 B
C#

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();
}
}