Returns a class factory to create an object of the requested type
| 42 | |
| 43 | // Returns a class factory to create an object of the requested type |
| 44 | STDAPI 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 |
nothing calls this directly
no outgoing calls
no test coverage detected