| 628 | } |
| 629 | |
| 630 | bool DbgEngAdapter::Detach() |
| 631 | { |
| 632 | m_aboutToBeKilled = true; |
| 633 | m_lastOperationIsStepInto = false; |
| 634 | if (!this->m_debugClient) |
| 635 | return false; |
| 636 | |
| 637 | if (this->m_debugClient->DetachProcesses() != S_OK) |
| 638 | return false; |
| 639 | |
| 640 | m_debugClient->ExitDispatch(reinterpret_cast<PDEBUG_CLIENT>(m_debugClient)); |
| 641 | return true; |
| 642 | } |
| 643 | |
| 644 | bool DbgEngAdapter::Quit() |
| 645 | { |
nothing calls this directly
no outgoing calls
no test coverage detected