1 instantiation of FARPROC
System.Windows.Forms.Primitives (1)
_generated\62\Windows.Win32.FARPROC.g.cs (1)
35
public static explicit operator FARPROC(IntPtr value) => new
FARPROC
(value);
14 references to FARPROC
System.Windows.Forms.Primitives (14)
_generated\417\Windows.Win32.PInvoke.KERNEL32.dll.g.cs (5)
440
internal static unsafe winmdroot.Foundation.
FARPROC
GetProcAddress(winmdroot.Foundation.HMODULE hModule, string lpProcName)
444
winmdroot.Foundation.
FARPROC
__result = PInvoke.GetProcAddress(hModule, new winmdroot.Foundation.PCSTR (lpProcNameLocal));
465
internal static winmdroot.Foundation.
FARPROC
GetProcAddress(winmdroot.Foundation.HMODULE hModule, winmdroot.Foundation.PCSTR lpProcName)
468
winmdroot.Foundation.
FARPROC
__retVal = LocalExternFunction(hModule, lpProcName);
473
static extern winmdroot.Foundation.
FARPROC
LocalExternFunction(winmdroot.Foundation.HMODULE hModule, winmdroot.Foundation.PCSTR lpProcName);
_generated\62\Windows.Win32.FARPROC.g.cs (9)
29
internal static
FARPROC
Null => default;
33
public static implicit operator IntPtr(
FARPROC
value) => value.Value;
35
public static explicit operator
FARPROC
(IntPtr value) => new FARPROC(value);
37
public static bool operator ==(
FARPROC
left,
FARPROC
right) => left.Value == right.Value;
39
public static bool operator !=(
FARPROC
left,
FARPROC
right) => !(left == right);
41
public bool Equals(
FARPROC
other) => this.Value == other.Value;
43
public override bool Equals(object obj) => obj is
FARPROC
other && this.Equals(other);