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)
11
public static unsafe implicit operator LPARAM(void* value) =>
new
((nint)value);
13
public static explicit operator LPARAM(BOOL value) =>
new
((nint)value);
15
public static implicit operator LPARAM(int value) =>
new
(value);
20
public static explicit operator LPARAM(uint value) =>
new
((nint)(nuint)value);