| 62 | |
| 63 | template<typename T, typename Callback, typename... Args> |
| 64 | void CreateXamlWindow(xaml_startup_position pos, Callback &&callback, Args&&... args) |
| 65 | { |
| 66 | m_Xaml.CreateXamlWindow<T>(pos, std::forward<Callback>(callback), std::forward<Args>(args)...); |
| 67 | } |
| 68 | |
| 69 | winrt::fire_and_forget DispatchToMainThread(winrt::Windows::System::DispatcherQueueHandler callback, |
| 70 | winrt::Windows::System::DispatcherQueuePriority priority = winrt::Windows::System::DispatcherQueuePriority::Normal) |
nothing calls this directly
no outgoing calls
no test coverage detected