|
IStdMarshalInfo::GetClassForHandler
Retrieves the CLSID of the object handler to be used in the destination
process during standard marshaling.
HRESULT GetClassForHandler(
DWORD dwDestContext,
| //Specifies the destination process
| void * pvDestContext,
| //Reserved for future use
| CLSID * pClsid
| //Receives the CLSID
| );
|
|
Parameters
dwDestContext
[in] Specifies the destination context, that is, the process in which the
unmarshaling will be done. The legal values for dwDestContext are taken from the enumeration MSHCTX. For information on the MSHCTX enumeration, see the "Data Structures" section.
pvDestContext
[in] Reserved for use with future MSHCTX values.
pClsid
[out] On exit, contains the handler's CLSID.
Return Values
S_OK
The CLSID was retrieved successfully.
E_OUTOFMEMORY
Out of memory.
E_INVALIDARG
One or more arguments are invalid.
E_UNEXPECTED
An unexpected error occurred.
Comments
Notes to Implementors
Your implementation of IStdMarshalInfo::GetClassForHandler must return your own CLSID. This allows an object created by a different
server to behave as one your server created.
Related LinksSoftware for Delphi and C++ Builder developers Software for Visual Studio .NET developers Software for Visual Basic 6 developers Delphi Tips&Tricks MegaDetailed.NET More Online Helps Win32 Programmer's Reference (win32.hlp) Win32 Multimedia Programmer's Reference (mmedia.hlp) Microsoft Windows Pen API Programmer's Reference (penapi.hlp) Microsoft Windows Sockets 2 Reference (sock2.hlp) Microsoft Windows Telephony API (TAPI) Programmer's Reference (sock2.hlp) Unix Manual Pages
|