MCPcopy Create free account
hub / github.com/clechasseur/pathcopycopy / DllCanUnloadNow

Function DllCanUnloadNow

PathCopyCopy/src/PathCopyCopy.cpp:32–40  ·  view source on GitHub ↗

Used to determine whether the DLL can be unloaded by OLE

Source from the content-addressed store, hash-verified

30
31// Used to determine whether the DLL can be unloaded by OLE
32STDAPI 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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected