DllCharacteristics Enum

Definition

Describes the characteristics of a dynamic link library.

This enumeration supports a bitwise combination of its member values.

public enum class DllCharacteristics
[System.Flags]
public enum DllCharacteristics
[<System.Flags>]
type DllCharacteristics = 
Public Enum DllCharacteristics
Inheritance
DllCharacteristics
Attributes

Fields

AppContainer 4096

The image must run inside an AppContainer.

ControlFlowGuard 16384

The image supports Control Flow Guard.

DynamicBase 64

The DLL can be relocated.

ForceIntegrity 128

Code integrity checks are enforced.

HighEntropyVirtualAddressSpace 32

The image can handle a high entropy 64-bit virtual address space.

NoBind 2048

Do not bind this image.

NoIsolation 512

The image understands isolation and doesn't want it.

NoSeh 1024

The image does not use SEH. No SE handler may reside in this image.

NxCompatible 256

The image is NX compatible.

ProcessInit 1

Reserved.

ProcessTerm 2

Reserved.

TerminalServerAware 32768

The image is Terminal Server aware.

ThreadInit 4

Reserved.

ThreadTerm 8

Reserved.

WdmDriver 8192

The driver uses the WDM model.

Applies to