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