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