OleSetContainedObject  FVBA_W

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

pUnk

[in] Pointer to the IUnknown1NEM0LU interface of the object.

fContained

[in] TRUE if the object is an embedded object; FALSE otherwise.

 

Return Values

This function supports the standard return values E_INVALIDARG, E_OUTOFMEMORY and E_UNEXPECTED, as well as the following:

S_OK

The object was notified successfully.

 

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 IRunnableObject110UGLT interface. You can use OleSetContainedObject and the IRunnableObject::SetContainedObject.TFB_V 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.TFB_V