Windows.Win32.Foundation.HINSTANCE
namespace Windows.Win32.Foundation
{
internal readonly struct HINSTANCE : IEquatable<HINSTANCE>
{
public unsafe static implicit operator void*(HINSTANCE value);
public unsafe static explicit operator HINSTANCE(void* value);
public static bool operator ==(HINSTANCE left, HINSTANCE right);
public static bool operator !=(HINSTANCE left, HINSTANCE right);
public bool Equals(HINSTANCE other);
public static implicit operator IntPtr(HINSTANCE value);
public static explicit operator HINSTANCE(IntPtr value);
public static explicit operator HINSTANCE(UIntPtr value);
public static implicit operator HMODULE(HINSTANCE value);
}
}