MCPcopy Create free account
hub / github.com/MJx0/KittyMemoryEx / writeMem

Method writeMem

KittyMemoryEx/KittyMemoryMgr.cpp:101–107  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

99}
100
101size_t KittyMemoryMgr::writeMem(uintptr_t address, void *buffer, size_t len) const
102{
103 if (!isMemValid() || !buffer || !len)
104 return 0;
105
106 return _pMemOp->Write(address, buffer, len);
107}
108
109std::string KittyMemoryMgr::readMemStr(uintptr_t address, size_t maxLen) const
110{

Callers

nothing calls this directly

Calls 1

WriteMethod · 0.80

Tested by

no test coverage detected