using System;
using Cpp2IlInjected;
namespace System.Runtime.InteropServices
{
/// Specifies the paths that are used to search for DLLs that provide functions for platform invokes.
// Token: 0x02000594 RID: 1428
[Token(Token = "0x2000594")]
[Flags]
public enum DllImportSearchPath
{
/// Search for the dependencies of a DLL in the folder where the DLL is located before searching other folders.
// Token: 0x040019D4 RID: 6612
[Token(Token = "0x40019D4")]
UseDllDirectoryForDependencies = 256,
/// Include the application directory in the DLL search path.
// Token: 0x040019D5 RID: 6613
[Token(Token = "0x40019D5")]
ApplicationDirectory = 512,
/// Include any path that was explicitly added to the process-wide search path by using the Win32 AddDllDirectory function.
// Token: 0x040019D6 RID: 6614
[Token(Token = "0x40019D6")]
UserDirectories = 1024,
/// Include the directory in the DLL search path.
// Token: 0x040019D7 RID: 6615
[Token(Token = "0x40019D7")]
System32 = 2048,
/// Include the application directory, the directory, and user directories in the DLL search path.
// Token: 0x040019D8 RID: 6616
[Token(Token = "0x40019D8")]
SafeDirectories = 4096,
/// 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.
// Token: 0x040019D9 RID: 6617
[Token(Token = "0x40019D9")]
AssemblyDirectory = 2,
/// 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 attribute use this value, and ignore other values.
// Token: 0x040019DA RID: 6618
[Token(Token = "0x40019DA")]
LegacyBehavior = 0
}
}