| 1223 | } |
| 1224 | |
| 1225 | unsigned long DbgEngAdapter::ExecStatus() |
| 1226 | { |
| 1227 | if (!m_debugControl) |
| 1228 | return DEBUG_STATUS_NO_DEBUGGEE; |
| 1229 | |
| 1230 | unsigned long execution_status {}; |
| 1231 | if (this->m_debugControl->GetExecutionStatus(&execution_status) != S_OK) |
| 1232 | return 0; |
| 1233 | |
| 1234 | return execution_status; |
| 1235 | } |
| 1236 | |
| 1237 | uint64_t DbgEngAdapter::ExitCode() |
| 1238 | { |
no test coverage detected