| 1416 | } |
| 1417 | |
| 1418 | HRESULT DbgEngInputCallbacks::StartInput(ULONG BufferSize) |
| 1419 | { |
| 1420 | // TODO: we should let the user type in some input when asked to. For now, we simply return an empty string, |
| 1421 | // otherwise, the debugger will hang. |
| 1422 | PCSTR input = ""; |
| 1423 | if (m_control) |
| 1424 | m_control->ReturnInput(input); |
| 1425 | return S_OK; |
| 1426 | } |
| 1427 | |
| 1428 | HRESULT DbgEngInputCallbacks::EndInput() |
| 1429 | { |
nothing calls this directly
no outgoing calls
no test coverage detected