| 42 | } |
| 43 | |
| 44 | STDMETHODIMP_(ULONG) CClassFactory::AddRef(void) { |
| 45 | return InterlockedIncrement(&m_refCount); |
| 46 | } |
| 47 | |
| 48 | STDMETHODIMP_(ULONG) CClassFactory::Release(void) { |
| 49 | ULONG count = InterlockedDecrement(&m_refCount); |
nothing calls this directly
no outgoing calls
no test coverage detected