Used to determine whether the DLL can be unloaded by OLE
| 30 | |
| 31 | // Used to determine whether the DLL can be unloaded by OLE |
| 32 | STDAPI DllCanUnloadNow(void) |
| 33 | { |
| 34 | #ifdef _MERGE_PROXYSTUB |
| 35 | const HRESULT hr = PrxDllCanUnloadNow(); |
| 36 | if (hr != S_OK) |
| 37 | return hr; |
| 38 | #endif |
| 39 | return _AtlModule.DllCanUnloadNow(); |
| 40 | } |
| 41 | |
| 42 | |
| 43 | // Returns a class factory to create an object of the requested type |
nothing calls this directly
no outgoing calls
no test coverage detected