DkmClrHeaderStatus Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Name | Value | Description |
---|---|---|
NativeBinary | 0 | The binary contains no CLR code. This value is used for binaries without a IMAGE_COR20_HEADER. |
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. |
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. |
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. |