Debugging Tools for Windows |
The ReadVirtualUncached method reads memory from the target's virtual address space.
HRESULT
IDebugDataSpaces::ReadVirtualUncached(
IN ULONG64 Offset,
OUT PVOID Buffer,
IN ULONG BufferSize,
OUT OPTIONAL PULONG BytesRead
);
This method can also return error values. See Return Values for more details.
ReadVirtualUncached is available in all versions of IDebugDataSpaces.
This method fills the buffer with the contents of the memory in the target's virtual address space.
This method behaves identically to ReadVirtual, 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.