| 19 | LONG g_serverLocks = 0; |
| 20 | |
| 21 | typedef struct ClassEntry { |
| 22 | const GUID *clsid; |
| 23 | STDMETHODIMP (*createFunc)(IUnknown *pUnkOuter, REFIID riid, void **ppv); |
| 24 | STDMETHODIMP (*updateRegistryFunc)(BOOL bRegister); |
| 25 | } ClassEntry; |
| 26 | |
| 27 | static ClassEntry g_classEntries[] = { |
| 28 | {&CLSID_LegacyUpdateCtrl, &CLegacyUpdateCtrl::Create, &CLegacyUpdateCtrl::UpdateRegistry}, |
nothing calls this directly
no outgoing calls
no test coverage detected