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

Method readMemStr

KittyMemoryEx/KittyMemoryMgr.cpp:109–115  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

107}
108
109std::string KittyMemoryMgr::readMemStr(uintptr_t address, size_t maxLen) const
110{
111 if (!isMemValid() || !address || !maxLen)
112 return "";
113
114 return _pMemOp->ReadStr(address, maxLen);
115}
116
117bool KittyMemoryMgr::writeMemStr(uintptr_t address, std::string str) const
118{

Callers

nothing calls this directly

Calls 1

ReadStrMethod · 0.80

Tested by

no test coverage detected