IDebugSymbols3::RemoveSymbolOptions method (dbgeng.h)

The RemoveSymbolOptions method turns off some of the engine's global symbol options.

Syntax

HRESULT RemoveSymbolOptions(
  [in] ULONG Options
);

Parameters

[in] Options

Specifies the symbol options to turn off. Options is a bit-set; the new value of the symbol options will equal the old value AND NOT the value of Options. For a description of the bit flags, see Setting Symbol Options.

Return value

Return code Description
S_OK
The method was successful.
 

This method may also return error values. See Return Values for more details.

Remarks

After the symbol options have been changed, for each client the engine sends out notification to that client's IDebugEventCallbacks by it passing the DEBUG_CES_SYMBOL_OPTIONS flag to the IDebugEventCallbacks::ChangeSymbolState method.

For more information about symbols, see Symbols.

Requirements

Requirement Value
Target Platform Desktop
Header dbgeng.h (include Dbgeng.h, Dbghelp.h)

See also

AddSymbolOptions

GetSymbolOptions

IDebugSymbols

IDebugSymbols2

IDebugSymbols3

SetSymbolOptions