MCPcopy Create free account
hub / github.com/beefytech/Beef / WriteMemory

Method WriteMemory

IDEHelper/WinDebugger.h:688–692  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

686};
687
688template<typename T> bool WinDebugger::WriteMemory(intptr addr, T val)
689{
690 SIZE_T dwWriteBytes;
691 return WriteProcessMemory(mProcessInfo.hProcess, (void*)(intptr)addr, &val, (SIZE_T)sizeof(T), &dwWriteBytes) != 0;
692}
693
694template<typename T> T WinDebugger::ReadMemory(intptr addr, bool local, bool* failed)
695{

Callers 8

CheckEnumCreationMethod · 0.45
StoreValueMethod · 0.45
CreateCallMethod · 0.45
Debugger_WriteMemoryFunction · 0.45
LocateSymbolMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected