-------------------------------------------------------------------------
| 82 | |
| 83 | //------------------------------------------------------------------------- |
| 84 | void BreakPoint::RemoveBreakPoint(const Address& address, |
| 85 | unsigned char oldInstruction) const |
| 86 | { |
| 87 | Tools::WriteProcessMemory(address.GetProcessHandle(), |
| 88 | address.GetValue(), |
| 89 | &oldInstruction, |
| 90 | sizeof(oldInstruction)); |
| 91 | } |
| 92 | |
| 93 | //------------------------------------------------------------------------- |
| 94 | void BreakPoint::AdjustEipAfterBreakPointRemoval(HANDLE hThread) const |
no test coverage detected