DkmClrHeaderStatus Enum

Definition

Contains information from the 'Flags' field of the IMAGE_COR20_HEADER of the loaded module. This indicates which type of binary was loaded.

public enum class DkmClrHeaderStatus
public enum class DkmClrHeaderStatus
enum DkmClrHeaderStatus
public enum DkmClrHeaderStatus
type DkmClrHeaderStatus = 
Public Enum DkmClrHeaderStatus
Inheritance
DkmClrHeaderStatus

Fields

ManagedOnlyBinary 2

The binary contains only managed code. This value is used for binaries with a IMAGE_COR20_HEADER and with the COMIMAGE_FLAGS_ILONLY flag.

MixedModeBinary 1

The binary contains both managed and native code. This value is used for binaries with a IMAGE_COR20_HEADER and without the COMIMAGE_FLAGS_ILONLY flag.

NativeBinary 0

The binary contains no CLR code. This value is used for binaries without a IMAGE_COR20_HEADER.

NGenBinary 3

The binary contains only pre-JITed managed code. This value is used for binaries with a IMAGE_COR20_HEADER and with the COMIMAGE_FLAGS_IL_LIBRARY flag.

Applies to