Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
DllImportAttribute.cs
Go to the documentation of this file.
2
3[AttributeUsage(AttributeTargets.Method, Inherited = false)]
4public sealed class DllImportAttribute : Attribute
5{
6 public string? EntryPoint;
7
9
10 public bool SetLastError;
11
12 public bool ExactSpelling;
13
15
16 public bool BestFitMapping;
17
18 public bool PreserveSig;
19
21
22 public string Value { get; }
23
24 public DllImportAttribute(string dllName)
25 {
26 Value = dllName;
27 }
28}