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