| 186 | return S_OK; |
| 187 | } |
| 188 | STDMETHODIMP_(ULONG) AddRef(void) |
| 189 | { |
| 190 | return InterlockedIncrement(&ref_count_); |
| 191 | } |
| 192 | STDMETHODIMP_(ULONG) Release() |
| 193 | { |
| 194 | ULONG ucount = InterlockedDecrement(&ref_count_); |
nothing calls this directly
no outgoing calls
no test coverage detected