IOleLink::GetBoundSource method
Retrieves a pointer to the link source if the connection is active.
Syntax
HRESULT GetBoundSource( [out] IUnknown **ppunk );
Parameters
- ppunk [out]
-
Address of IDataObject pointer variable that receives the interface pointer to the link source. When successful, the implementation must call IUnknown::AddRef on ppunk; it is the caller's responsibility to call IUnknown::Release. If an error occurs, the implementation sets ppunk to NULL.
Return value
This method returns S_OK on success. Other possible return values include the following.
| Return code | Description |
|---|---|
|
The operation failed. |
Remarks
You typically do not need to call IOleLink::GetBoundSource.
Requirements
|
Minimum supported client |
Windows 2000 Professional [desktop apps only] |
|---|---|
|
Minimum supported server |
Windows 2000 Server [desktop apps only] |
|
Header |
|
|
IDL |
|
|
IID |
IID_IOleLink is defined as 0000011d-0000-0000-C000-000000000046 |
See also