Debugging Tools for Windows |
The WriteVirtualUncached method writes data to the target's virtual address space.
HRESULT
IDebugDataSpaces::WriteVirtualUncached(
IN ULONG64 Offset,
IN PVOID Buffer,
IN ULONG BufferSize,
OUT OPTIONAL PULONG BytesWritten
);
This method can also return error values. See Return Values for more details.
WriteVirtualUncached is available in all versions of IDebugDataSpaces.
This method writes the buffer to the memory in the target's virtual address space.
This method behaves identically to WriteVirtual, except that it avoids using the virtual memory cache. It is therefore useful for reading inherently volatile virtual memory, such as memory-mapped device areas, without contaminating or invalidating the cache.
Headers: Defined in Dbgeng.h. Include Dbgeng.h.