Debugging Tools for Windows |
The OutputRegisters method formats and sends the target's registers to the clients as output.
HRESULT
IDebugRegisters::OutputRegisters(
IN ULONG OutputControl,
IN ULONG Flags
);
Value | Description |
---|---|
DEBUG_REGISTERS_INT32 | Print the 32-bit register set. |
DEBUG_REGISTERS_INT64 | Print the 64-bit register set. |
DEBUG_REGISTERS_FLOAT | Print the floating-point register set. |
This list does not contain all the errors that might occur. For a list of possible errors, see HRESULT Values.
OutputRegisters is available in all versions of IDebugRegisters.
The registers are formatted in a way that is specific to the target architecture's register set.
The method OutputRegisters2 performs the same task as this method but also allows the register source to be specified.
For an overview of the IDebugRegisters interface and other register-related methods, see Registers. For details on sending output to the clients, see Input and Output.
Headers: Defined in DbgEng.h. Include DbgEng.h.