This function returns the CLSID of the DLL that implements the proxy and stub for the specified interface.
WINOLEAPI CoGetPSClsid(
REFIID riid, |
// Interface whose proxy/stub CLSID is to be returned |
CLSID *pclsid |
// Where to store returned proxy/stub CLSID |
); |
Parameters
Return Values
Remarks
The CoGetPSClsid function looks at the HKEY_CLASSES_ROOT\Interfaces\{ string form of riid }\ProxyStubClsid32 key in the registry to determine the CLSID of the DLL to load in order to create the proxy and stub for the interface specified by riid. This function also returns the CLSID for any interface IID registered by CoRegisterPSClsid within the current process.
See Also