Debugging Tools for Windows |
The WriteMemory function works like the Win32 WriteProcessMemory routine. It writes memory to the process being debugged. The entire area to be written must be accessible, or the operation fails.
ULONG
WriteMemory (
ULONG offset,
LPCVOID lpbuffer,
ULONG cb,
PULONG lpcbBytesWritten
);
If the routine succeeds, the return value is TRUE; otherwise, it is FALSE.
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).