Debugging Tools for Windows |
The SetRadix method sets the default radix (number base) used by the debugger engine when it evaluates and displays MASM expressions, and when it displays symbol information.
HRESULT
IDebugControl::SetRadix(
IN ULONG Radix
);
Value | Description |
---|---|
8 | Octal |
10 | Decimal |
16 | Hexadecimal |
This method may also return error values. See Return Values for more details.
SetRadix is available in all versions of IDebugControl.
When the radix is changed, the engine notifies the event callbacks by passing the DEBUG_CES_RADIX flag to the IDebugEventCallbacks::ChangeEngineState callback method.
For more information about the default radix, see Using Input and Output.
Headers: Defined in Dbgeng.h. Include Dbgeng.h.