| 119 | } |
| 120 | |
| 121 | STDMETHODIMP_(ULONG) CLegacyUpdateCtrl::AddRef(void) { |
| 122 | return InterlockedIncrement(&m_refCount); |
| 123 | } |
| 124 | |
| 125 | STDMETHODIMP_(ULONG) CLegacyUpdateCtrl::Release(void) { |
| 126 | ULONG count = InterlockedDecrement(&m_refCount); |
nothing calls this directly
no outgoing calls
no test coverage detected