| 320 | } |
| 321 | |
| 322 | uintptr_t MemScanner::get_address(int index) const |
| 323 | { |
| 324 | if (addresses.empty()) |
| 325 | return 0; |
| 326 | |
| 327 | return *reinterpret_cast<const uintptr_t*>(&addresses[index*sizeof(uintptr_t)]); |
| 328 | } |
| 329 | |
| 330 | const MemValueType* MemScanner::get_previous_value(int index) const |
| 331 | { |