Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
PInvokeAttributes.cs
Go to the documentation of this file.
1namespace System.Reflection;
2
3[Flags]
4internal enum PInvokeAttributes
5{
6 NoMangle = 1,
7 CharSetMask = 6,
9 CharSetAnsi = 2,
11 CharSetAuto = 6,
13 BestFitEnabled = 0x10,
14 BestFitDisabled = 0x20,
15 BestFitMask = 0x30,
20 SupportsLastError = 0x40,
21 CallConvMask = 0x700,
22 CallConvWinapi = 0x100,
23 CallConvCdecl = 0x200,
24 CallConvStdcall = 0x300,
25 CallConvThiscall = 0x400,
26 CallConvFastcall = 0x500,
27 MaxValue = 0xFFFF
28}