DllCharacteristics 枚举

定义

描述动态链接库的特性。

此枚举支持其成员值的按位组合。

public enum class DllCharacteristics
[System.Flags]
public enum DllCharacteristics
[<System.Flags>]
type DllCharacteristics = 
Public Enum DllCharacteristics
继承
DllCharacteristics
属性

字段

AppContainer 4096

映像必须在 AppContainer 中运行。

ControlFlowGuard 16384

该映像支持 Control Flow Guard。

DynamicBase 64

DLL 可重定位。

ForceIntegrity 128

强制实施代码完整性检查。

HighEntropyVirtualAddressSpace 32

映像可处理高熵 64 位虚拟地址空间。

NoBind 2048

请勿绑定此映像。

NoIsolation 512

该映像理解隔离,但不需要隔离。

NoSeh 1024

该映像不使用 SEH。 该映像中不能有任何 SE 处理程序。

NxCompatible 256

该映像与 NX 兼容。

ProcessInit 1

保留。

ProcessTerm 2

保留。

TerminalServerAware 32768

该映像支持终端服务器感知。

ThreadInit 4

保留。

ThreadTerm 8

保留。

WdmDriver 8192

驱动程序使用 WDM 模型。

适用于