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

◆ GetExceptionForHR() [2/2]

static ? Exception System.Runtime.InteropServices.Marshal.GetExceptionForHR ( int errorCode,
IntPtr errorInfo )
inlinestatic

Definition at line 1223 of file Marshal.cs.

1224 {
1225 if (errorCode >= 0)
1226 {
1227 return null;
1228 }
1229 return GetExceptionForHRInternal(errorCode, errorInfo);
1230 }
static Exception GetExceptionForHRInternal(int errorCode, IntPtr errorInfo)

References System.Runtime.InteropServices.Marshal.GetExceptionForHRInternal().