mirror of
https://github.com/jkocon/g-helper.git
synced 2026-02-23 13:00:52 +01:00
12 lines
305 B
C#
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();
|
|
}
|
|
} |