| 4542 | } |
| 4543 | |
| 4544 | void WinDebugger::OutputRawMessage(const StringImpl& msg) |
| 4545 | { |
| 4546 | if (this == NULL) |
| 4547 | return; |
| 4548 | AutoCrit autoCrit(mDebugManager->mCritSect); |
| 4549 | mDebugManager->mOutMessages.push_back(msg); |
| 4550 | } |
| 4551 | |
| 4552 | void WinDebugger::SetRunState(RunState runState) |
| 4553 | { |
no test coverage detected