This commit is contained in:
niko
2026-04-10 22:50:51 +02:00
parent 6d1607d5a2
commit f18d448581
17033 changed files with 2863270 additions and 0 deletions
@@ -0,0 +1,41 @@
using System;
using Cpp2IlInjected;
namespace System.Runtime.InteropServices
{
/// <summary>Specifies the paths that are used to search for DLLs that provide functions for platform invokes.</summary>
// Token: 0x02000575 RID: 1397
[Token(Token = "0x2000575")]
[Flags]
public enum DllImportSearchPath
{
/// <summary>Search for the dependencies of a DLL in the folder where the DLL is located before searching other folders.</summary>
// Token: 0x04001911 RID: 6417
[Token(Token = "0x4001911")]
UseDllDirectoryForDependencies = 256,
/// <summary>Include the application directory in the DLL search path.</summary>
// Token: 0x04001912 RID: 6418
[Token(Token = "0x4001912")]
ApplicationDirectory = 512,
/// <summary>Include any path that was explicitly added to the process-wide search path by using the Win32 AddDllDirectory function.</summary>
// Token: 0x04001913 RID: 6419
[Token(Token = "0x4001913")]
UserDirectories = 1024,
/// <summary>Include the <see langword="%WinDir%\System32" /> directory in the DLL search path.</summary>
// Token: 0x04001914 RID: 6420
[Token(Token = "0x4001914")]
System32 = 2048,
/// <summary>Include the application directory, the <see langword="%WinDir%\System32" /> directory, and user directories in the DLL search path.</summary>
// Token: 0x04001915 RID: 6421
[Token(Token = "0x4001915")]
SafeDirectories = 4096,
/// <summary>When searching for assembly dependencies, include the directory that contains the assembly itself, and search that directory first. This value is used by the .NET Framework, before the paths are passed to the Win32 LoadLibraryEx function.</summary>
// Token: 0x04001916 RID: 6422
[Token(Token = "0x4001916")]
AssemblyDirectory = 2,
/// <summary>Search the application directory, and then call the Win32 LoadLibraryEx function with the LOAD_WITH_ALTERED_SEARCH_PATH flag. This value is ignored if any other value is specified. Operating systems that do not support the <see cref="T:System.Runtime.InteropServices.DefaultDllImportSearchPathsAttribute" /> attribute use this value, and ignore other values.</summary>
// Token: 0x04001917 RID: 6423
[Token(Token = "0x4001917")]
LegacyBehavior = 0
}
}