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