| 87 | } |
| 88 | |
| 89 | void WinMessageLoop::Stop() { |
| 90 | LOGI("WinMessageLoop stopping..."); |
| 91 | message_window_->CloseWindow(); |
| 92 | if (thread_.joinable()) { |
| 93 | thread_.join(); |
| 94 | } |
| 95 | LOGI("WinMessageLoop stoped."); |
| 96 | } |
| 97 | |
| 98 | void WinMessageLoop::ThreadFunc() { |
| 99 | // https://github.com/dchapyshev/aspia |
no test coverage detected