| 115 | } |
| 116 | |
| 117 | bool KittyMemoryMgr::writeMemStr(uintptr_t address, std::string str) const |
| 118 | { |
| 119 | if (!isMemValid() || !address || str.empty()) |
| 120 | return false; |
| 121 | |
| 122 | return _pMemOp->WriteStr(address, str); |
| 123 | } |
| 124 | |
| 125 | bool KittyMemoryMgr::dumpMemRange(uintptr_t start, uintptr_t end, const std::string &destination) const |
| 126 | { |