using System; namespace NvAPIWrapper.Native.Interfaces { /// /// Marker interface for all types that should be allocated before passing to the managed code /// internal interface IAllocatable : IInitializable, IDisposable { void Allocate(); } }