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