| 1112 | } |
| 1113 | |
| 1114 | bool DbgEngAdapter::StepOver() |
| 1115 | { |
| 1116 | if (ExecStatus() != DEBUG_STATUS_BREAK) |
| 1117 | return false; |
| 1118 | |
| 1119 | m_lastOperationIsStepInto = false; |
| 1120 | if (this->m_debugControl->SetExecutionStatus(DEBUG_STATUS_STEP_OVER) != S_OK) |
| 1121 | return false; |
| 1122 | |
| 1123 | m_debugClient->ExitDispatch(reinterpret_cast<PDEBUG_CLIENT>(m_debugClient)); |
| 1124 | return true; |
| 1125 | } |
| 1126 | |
| 1127 | bool DbgEngAdapter::StepReturn() |
| 1128 | { |
nothing calls this directly
no test coverage detected