5 references to new
System.Private.Windows.Core (5)
Windows.Win32.LPARAM.g.cs (1)
33 public static implicit operator LPARAM(nint value) => new LPARAM(value);
Windows\Win32\Foundation\LPARAM.cs (4)
11public static unsafe implicit operator LPARAM(void* value) => new((nint)value); 13public static explicit operator LPARAM(BOOL value) => new((nint)value); 15public static implicit operator LPARAM(int value) => new(value); 20public static explicit operator LPARAM(uint value) => new((nint)(nuint)value);