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

◆ MakeHRFromErrorCode() [6/6]

static int System.IO.Win32Marshal.MakeHRFromErrorCode ( int errorCode)
inlinestaticpackage

Definition at line 44 of file Win32Marshal.cs.

45 {
46 if ((0xFFFF0000u & errorCode) != 0L)
47 {
48 return errorCode;
49 }
50 return -2147024896 | errorCode;
51 }

References System.L.