Debugging Tools for Windows |
The WritePhysicalWithFlags function writes to physical memory.
VOID
WritePhysicalWithFlags(
ULONG64 address,
PVOID buf,
ULONG size,
ULONG flags,
PULONG sizew
);
Value | Description |
---|---|
PHYS_FLAG_DEFAULT | Use the default memory caching. |
PHYS_FLAG_CACHED | The physical memory is cached. |
PHYS_FLAG_UNCACHED | The physical memory is uncached. |
PHYS_FLAG_WRITE_COMBINED | The physical memory is write-combined. |
None
Headers: Defined in wdbgexts.h. If you are writing a WdbgExts extension, include wdbgexts.h. If you are writing a DbgEng extension that calls this function, include wdbgexts.h before dbgeng.h (see Writing DbgEng Extension Code for details).