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

Function DllGetClassObject

Testing/TestPlugins/src/TestPlugins.cpp:41–48  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected