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