| 251 | } |
| 252 | |
| 253 | void ConsoleDebugMockService::Run() |
| 254 | { |
| 255 | std::cout << "Running service as a console app..." << std::endl; |
| 256 | |
| 257 | // Start the main PresentMon thread, wait for it to exit |
| 258 | std::jthread pmMainThread(PresentMonMainThread, this); |
| 259 | } |
| 260 | |
| 261 | HANDLE ConsoleDebugMockService::GetServiceStopHandle() |
| 262 | { |