OleSetContainedObject
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 IUnknown
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 IRunnableObject
Note The
implementation of OleSetContainedObject in earlier versions of OLE
differs from that described here.
See Also
IRunnableObject::SetContainedObject