Windows.Win32.Foundation.WPARAM
namespace Windows.Win32.Foundation
{
internal readonly struct WPARAM : IEquatable<WPARAM>
{
public ushort HIWORD { get; }
public short SIGNEDHIWORD { get; }
public ushort LOWORD { get; }
public short SIGNEDLOWORD { get; }
public unsafe static implicit operator void*(WPARAM value);
public unsafe static implicit operator WPARAM(void* value);
public static explicit operator HWND(WPARAM value);
public static explicit operator WPARAM(HWND value);
public static explicit operator HDC(WPARAM value);
public static explicit operator WPARAM(HDC value);
public static explicit operator WPARAM(HFONT value);
public static explicit operator BOOL(WPARAM value);
public static explicit operator WPARAM(BOOL value);
public static explicit operator int(WPARAM value);
public static explicit operator uint(WPARAM value);
public static explicit operator IntPtr(WPARAM value);
public static explicit operator WPARAM(int value);
public static explicit operator WPARAM(char value);
public static explicit operator WPARAM(Color value);
public static WPARAM MAKEWPARAM(int low, int high);
public static implicit operator UIntPtr(WPARAM value);
public static implicit operator WPARAM(UIntPtr value);
public static bool operator ==(WPARAM left, WPARAM right);
public static bool operator !=(WPARAM left, WPARAM right);
public bool Equals(WPARAM other);
}
}