| 108 | /* ============================== MemoryPatchMgr ============================== */ |
| 109 | |
| 110 | MemoryPatch MemoryPatchMgr::createWithBytes(uintptr_t absolute_address, const void *patch_code, size_t patch_size) |
| 111 | { |
| 112 | return MemoryPatch(_pMem, absolute_address, patch_code, patch_size); |
| 113 | } |
| 114 | |
| 115 | MemoryPatch MemoryPatchMgr::createWithHex(uintptr_t absolute_address, std::string hex) |
| 116 | { |
no test coverage detected