DEBUG_TYPEOPTS_XXX

The type options affect how the engine formats numbers and strings for output.

The options are represented by a bit-set with the following bit flags.

Constant Description
DEBUG_TYPEOPTS_UNICODE_DISPLAY

When this bit is set, USHORT pointers and arrays are output as Unicode characters.

This is equivalent to the debugger command .enable_unicode 1.

DEBUG_TYPEOPTS_LONGSTATUS_DISPLAY

When this bit is set, LONG integers are output in the default base instead of decimal.

This is equivalent to the debugger command .enable_long_status 1.

DEBUG_TYPEOPTS_FORCERADIX_OUTPUT

When this bit is set, integers (except for LONG integers) are output in the default base instead of decimal.

This is equivalent to the debugger command .force_radix_output 1.

Remarks

By default, all of the type formatting options are turned off.

For more information about types, see Types.

Requirements

Header

DbgEng.h (include DbgEng.h)