Notifies an object that it is embedded in an OLE container, which ensures that reference counting is done correctly for containers that support links to embedded objects.
WINOLEAPI OleSetContainedObject(
LPUNKNOWN pUnk, |
//Pointer to the interface on the embedded object |
BOOL fContained |
//Indicates if the object is embedded |
); |
Parameters
Return Values
This function supports the standard return values E_INVALIDARG, E_OUTOFMEMORY and E_UNEXPECTED, as well as the following:
Remarks
The OleSetContainedObject function notifies an object that it is embedded in an OLE container. The implementation of OleSetContainedObject was changed in OLE 2.01 to coincide with the publication of the IRunnableObject interface. You can use OleSetContainedObject and the IRunnableObject::SetContainedObject method interchangeably. The OleSetContainedObject function queries the object for a pointer to the IRunnableObject interface. If successful, the function returns the results of calling IRunnableObject::SetContainedObject.
Note The implementation of OleSetContainedObject in earlier versions of OLE differs from that described here.
See Also
IRunnableObject::SetContainedObject