Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
EXCEPINFO.cs
Go to the documentation of this file.
2
3[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
4public struct EXCEPINFO
5{
6 public short wCode;
7
8 public short wReserved;
9
10 [MarshalAs(UnmanagedType.BStr)]
11 public string bstrSource;
12
13 [MarshalAs(UnmanagedType.BStr)]
14 public string bstrDescription;
15
16 [MarshalAs(UnmanagedType.BStr)]
17 public string bstrHelpFile;
18
19 public int dwHelpContext;
20
22
24
25 public int scode;
26}