DkmModuleSymbolFlags 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.
Flags which indicate traits of a DkmModule object.
This API was introduced in Visual Studio 17 Update 2 (DkmApiVersion.VS17Update2).
This enumeration supports a bitwise combination of its member values.
[System.Flags]
public enum DkmModuleSymbolFlags
[<System.Flags>]
type DkmModuleSymbolFlags =
Public Enum DkmModuleSymbolFlags
- Inheritance
-
DkmModuleSymbolFlags
- Attributes
Fields
| Name | Value | Description |
|---|---|---|
| None | 0 | No module flags are set. |
| Decompiled | 1 | Symbols were generated by decompiling the module instance. |
| DeferredLoad | 2 | Symbols were loaded automatically when needed, such as native symbols loaded for x86 stack walk. |
| Reloadable | 4 | Symbols have the opportunity to be reloaded for a higher fidelity version of the symbols, i.e. the current symbols are from decompilation or are stripped symbols. |
| PartiallyDecompiled | 8 | Symbols were generated by decompiling individual types within the module instance. |
| Stripped | 16 | Symbols were generated without source information. |