table of contents
other versions
- wheezy 1.4.1-4
CoGetPSClsid(3w) | Wine API | CoGetPSClsid(3w) |
NAME¶
CoGetPSClsid (OLE32.@)SYNOPSIS¶
HRESULT CoGetPSClsid(
REFIID riid,
CLSID* pclsid
)
DESCRIPTION¶
Retrieves the CLSID of the proxy/stub factory that implements IPSFactoryBuffer for the specified interface.PARAMS¶
riid [In] Interface whose proxy/stub CLSID is to be returned. pclsid [Out] Where to store returned proxy/stub CLSID.RETURNS¶
S_OK E_OUTOFMEMORY REGDB_E_IIDNOTREG if no PSFactoryBuffer is associated with the IID, or it could not be parsed.NOTES¶
The standard marshaller activates the object with the CLSID returned and uses the CreateProxy and CreateStub methods on its IPSFactoryBuffer interface to construct the proxies and stubs for a given object. CoGetPSClsid determines this CLSID by searching the HKEY_CLASSES_ROOTInterface{string form of riid}ProxyStubClsid32 in the registry and any interface Id registered by CoRegisterPSClsid within the current process.BUGS¶
Native returns S_OK for interfaces with a key in HKCRInterface, but without a ProxyStubClsid32 key and leaves garbage in pclsid. This should be considered a bug in native unless an application depends on this (unlikely).SEE ALSO¶
CoRegisterPSClsid.IMPLEMENTATION¶
Declared in "objbase.h". Implemented in "dlls/ole32/compobj.c". Debug channel "ole".Oct 2012 | Wine API |