IDebugControl3::RemoveAssemblyOptions method (dbgeng.h)

The RemoveAssemblyOptions method turns off some of the assembly and disassembly options.

Syntax

HRESULT RemoveAssemblyOptions(
  [in] ULONG Options
);

Parameters

[in] Options

Specifies the assembly and disassembly options to turn off. Options is a bit-set; the new value of the engine's options will equal the bitwise NOT of Options combined with the old value by using the bitwise AND operator. For a description of the assembly and disassembly options, see DEBUG_ASMOPT_XXX.

Return value

Return code Description
S_OK
The method was successful.
 

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

Remarks

For more information about using assembly with the debugger engine API, see Assembling and Disassembling Instructions.

Requirements

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

See also

.asm (Change Disassembly Options)

AddAssemblyOptions

Assemble

DEBUG_ASMOPT_XXX

Disassemble

GetAssemblyOptions

IDebugControl3

SetAssemblyOptions