| 59 | } |
| 60 | |
| 61 | STDMETHODIMP CClassFactory::LockServer(BOOL fLock) { |
| 62 | if (fLock) { |
| 63 | InterlockedIncrement(&g_serverLocks); |
| 64 | } else { |
| 65 | InterlockedDecrement(&g_serverLocks); |
| 66 | } |
| 67 | return S_OK; |
| 68 | } |
nothing calls this directly
no outgoing calls
no test coverage detected