| 35 | } |
| 36 | |
| 37 | void XamlThread::DeletedCallback(void *data) |
| 38 | { |
| 39 | const auto that = static_cast<XamlThread *>(data); |
| 40 | |
| 41 | { |
| 42 | std::scoped_lock guard(that->m_CurrentWindowLock); |
| 43 | that->m_CurrentWindow.reset(); |
| 44 | } |
| 45 | |
| 46 | that->m_Source = nullptr; |
| 47 | } |
| 48 | |
| 49 | void XamlThread::ThreadInit() |
| 50 | { |
nothing calls this directly
no outgoing calls
no test coverage detected