using System;
namespace NvAPIWrapper.Native.Interfaces
{
///
/// Interface for all pointer based handles
///
public interface IHandle
{
///
/// Returns true if the handle is null and not pointing to a valid location in the memory
///
bool IsNull { get; }
///
/// Gets the address of the handle in the memory
///
IntPtr MemoryAddress { get; }
}
}