| 1240 | } |
| 1241 | |
| 1242 | std::string DbgEngAdapter::InvokeBackendCommand(const std::string& command) |
| 1243 | { |
| 1244 | if (m_debugControl) |
| 1245 | { |
| 1246 | this->m_debugControl->Execute(DEBUG_OUTCTL_ALL_CLIENTS, command.c_str(), DEBUG_EXECUTE_NO_REPEAT); |
| 1247 | m_debugClient->ExitDispatch(reinterpret_cast<PDEBUG_CLIENT>(m_debugClient)); |
| 1248 | // The output is handled by DbgEngOutputCallbacks::Output() |
| 1249 | } |
| 1250 | return ""; |
| 1251 | } |
| 1252 | |
| 1253 | uint64_t DbgEngAdapter::GetInstructionOffset() |
| 1254 | { |