| 114 | } |
| 115 | |
| 116 | STDMETHODIMP_(ULONG) CElevationHelper::AddRef(void) { |
| 117 | return InterlockedIncrement(&m_refCount); |
| 118 | } |
| 119 | |
| 120 | STDMETHODIMP_(ULONG) CElevationHelper::Release(void) { |
| 121 | ULONG count = InterlockedDecrement(&m_refCount); |
nothing calls this directly
no outgoing calls
no test coverage detected