| 2897 | } |
| 2898 | |
| 2899 | void AppWindow::AsyncMessageBox(std::wstring message, std::wstring title) |
| 2900 | { |
| 2901 | RunAsync([this, message = std::move(message), title = std::move(title)] |
| 2902 | { MessageBox(m_mainWindow, message.c_str(), title.c_str(), MB_OK); }); |
| 2903 | } |
| 2904 | |
| 2905 | void AppWindow::EnterFullScreen() |
| 2906 | { |
no outgoing calls
no test coverage detected