Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Defines the kind of a symbol.
Syntax
typedef enum SymbolKind {
Symbol,
SymbolModule,
SymbolType,
SymbolField,
SymbolConstant,
SymbolData,
SymbolBaseClass,
SymbolPublic,
SymbolFunction
} ;
Constants
SymbolUnspecified symbol type. |
SymbolModuleThe symbol is a module and can be queried for IDebugHostModule. |
SymbolTypeThe symbol is a type and can be queried for IDebugHostType. |
SymbolFieldThe symbol is a field (a data member within a structure or class) and can be queried for IDebugHostField. |
SymbolConstantThe symbol is a constant value and can be queried for IDebugHostConstant. |
SymbolDataThe symbol is data which is not a member of a structure or class and is queryable for IDebugHostData. |
SymbolBaseClassThe symbol is a base class and is queryable for IDebugHostBaseClass. |
SymbolPublicThe symbol is an entry in a module's publics table (having no type information) and is queryable for IDebugHostPublic. |
SymbolFunctionThe symbol is a function and is queryable for IDebugHostData. |
Requirements
| Requirement | Value |
|---|---|
| Header | dbgmodel.h |