Debugging Tools for Windows |
The WriteTypedDataPhysical method writes the value of a variable in the target computer's physical memory.
HRESULT
IDebugSymbols::WriteTypedDataPhysical(
IN ULONG64 Offset,
IN ULONG64 Module,
IN ULONG TypeId,
IN PVOID Buffer,
IN ULONG BufferSize,
OUT OPTIONAL PULONG BytesWritten
);
This method may also return error values. See Return Values for more details.
WriteTypedDataPhysical is available in all versions of IDebugSymbols.
This method is only available in kernel mode debugging.
The number of bytes this method attempts to write is the smaller of the size of the buffer and the size of the variable.
This is a convenience method. The same result can be obtained by calling GetTypeSize and WritePhysical.
For more information about types, see Types.
Headers: Defined in Dbgeng.h. Include Dbgeng.h.