Debugging Tools for Windows |
The OutputSymbols method prints the specified symbols to the debugger console.
HRESULT
IDebugSymbolGroup::OutputSymbols(
IN ULONG OutputControl,
IN ULONG Flags,
IN ULONG Start,
IN ULONG Count
);
You can use the following bit flags to suppress the output of one of these pieces of information together with the corresponding marker.
Value | Description |
---|---|
DEBUG_OUTPUT_SYMBOLS_NO_NAMES | Suppress output of the symbol's name. |
DEBUG_OUTPUT_SYMBOLS_NO_OFFSETS | Suppress output of the symbol's offset. |
DEBUG_OUTPUT_SYMBOLS_NO_VALUES | Suppress output of the symbol's value. |
DEBUG_OUTPUT_SYMBOLS_NO_TYPES | Suppress output of the symbol's type. |
OutputSymbols might return one of the following values:
This method might also return error values. For more information about possible return values, see Return Values.
For more information about symbol groups, see Scopes and Symbol Groups.
Versions: Available in all versions of IDebugSymbolGroup.
Headers: Defined in Dbgeng.h. Include Dbgeng.h.