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

Function DllGetClassObject

PathCopyCopy/src/PathCopyCopy.cpp:44–51  ·  view source on GitHub ↗

Returns a class factory to create an object of the requested type

Source from the content-addressed store, hash-verified

42
43// Returns a class factory to create an object of the requested type
44STDAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID* ppv)
45{
46#ifdef _MERGE_PROXYSTUB
47 if (PrxDllGetClassObject(rclsid, riid, ppv) == S_OK)
48 return S_OK;
49#endif
50 return _AtlModule.DllGetClassObject(rclsid, riid, ppv);
51}
52
53
54// DllRegisterServer - Adds entries to the system registry

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected