| 1387 | } |
| 1388 | |
| 1389 | HRESULT DbgEngOutputCallbacks::Output(unsigned long mask, const char* text) |
| 1390 | { |
| 1391 | DebuggerEvent event; |
| 1392 | event.type = BackendMessageEventType; |
| 1393 | event.data.messageData.message = text; |
| 1394 | m_adapter->PostDebuggerEvent(event); |
| 1395 | return S_OK; |
| 1396 | } |
| 1397 | |
| 1398 | unsigned long DbgEngOutputCallbacks::AddRef() |
| 1399 | { |
nothing calls this directly
no test coverage detected