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