Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ GetExport()

static IntPtr System.Runtime.InteropServices.NativeLibrary.GetExport ( IntPtr handle,
string name )
inlinestatic

Definition at line 91 of file NativeLibrary.cs.

92 {
93 if (handle == IntPtr.Zero)
94 {
95 throw new ArgumentNullException("handle");
96 }
97 if (name == null)
98 {
99 throw new ArgumentNullException("name");
100 }
101 return GetSymbol(handle, name, throwOnError: true);
102 }
static IntPtr GetSymbol(IntPtr handle, string symbolName, bool throwOnError)

References System.Runtime.InteropServices.NativeLibrary.GetSymbol(), System.handle, and System.IntPtr.Zero.

Referenced by System.DateTime.GetGetSystemTimeAsFileTimeFnPtr().