| 2891 | } |
| 2892 | |
| 2893 | void AppWindow::RunAsync(std::function<void()> callback) |
| 2894 | { |
| 2895 | auto* task = new std::function<void()>(std::move(callback)); |
| 2896 | PostMessage(m_mainWindow, s_runAsyncWindowMessage, reinterpret_cast<WPARAM>(task), 0); |
| 2897 | } |
| 2898 | |
| 2899 | void AppWindow::AsyncMessageBox(std::wstring message, std::wstring title) |
| 2900 | { |
no outgoing calls
no test coverage detected