| 3039 | } |
| 3040 | |
| 3041 | void AppWindow::Release() |
| 3042 | { |
| 3043 | uint32_t refCount = InterlockedDecrement((LONG*)&m_refCount); |
| 3044 | if (refCount == 0) |
| 3045 | { |
| 3046 | delete this; |
| 3047 | } |
| 3048 | } |
| 3049 | |
| 3050 | void AppWindow::NotifyClosed() |
| 3051 | { |
no outgoing calls
no test coverage detected