IDebugSymbols2::OutputTypedDataPhysical method (dbgeng.h)
The OutputTypedDataPhysical method formats the contents of a variable in the target computer's physical memory, and then sends this to the output callbacks.
Syntax
HRESULT OutputTypedDataPhysical(
[in] ULONG OutputControl,
[in] ULONG64 Offset,
[in] ULONG64 Module,
[in] ULONG TypeId,
[in] ULONG Flags
);
Parameters
[in] OutputControl
Specifies the output control used to determine which output callbacks can receive the output. See DEBUG_OUTCTL_XXX for possible values.
[in] Offset
Specifies the physical address in the target computer's memory of the variable.
[in] Module
Specifies the base address of the module containing the type of the variable.
[in] TypeId
Specifies the type ID of the type of the variable.
[in] Flags
Specifies the bit-set containing the formatting options. See DEBUG_TYPEOPTS_XXX for possible values.
Return value
This method may also return error values. See Return Values for more details.
Return code | Description |
---|---|
|
The method was successful. |
Remarks
This method is only available in kernel mode debugging.
The output produced by this method is the same as for the debugger command DT. See dt (Display Type).
For more information about types, see Types. For information about output, see Input and Output.
Requirements
Requirement | Value |
---|---|
Target Platform | Desktop |
Header | dbgeng.h (include Dbgeng.h) |