CreateOleAdviseHolder (Windows CE 5.0)

Send Feedback

This function instantiates an advise holder object for managing compound document notifications. It passes out a pointer to the object's OLE implementation of the IOleAdviseHolder interface.

WINOLEAPICreateOleAdviseHolder(IOleAdviseHolder FAR* FAR* ppOAHolder);

Parameters

  • ppOAHolder
    [out] Pointer to IOleAdviseHolder* pointer variable that receives the interface pointer to the new advise holder object.

Return Values

This function returns S_OK if it is successful.

This function returns E_OUTOFMEMORY if it fails.

Remarks

The function CreateOleAdviseHolder creates an instance of an advise holder, which supports the OLE implementation of the IOleAdviseHolder interface.

The methods of this interface are intended to be used to implement the advisory methods of IOleObject and, when advisory connections are set up with objects supporting an advisory sink, to send notifications of changes in the object to the advisory sink.

The advise holder returned by CreateOleAdviseHolder suffices for most applications.

However, the OLE-provided implementation does not support IOleAdviseHolder::EnumAdvise. If you need to use this method, implement your own advise holder.

Passing invalid (and under some circumstances NULL) pointers into this function causes an unexpected termination of the application.

To determine whether the platform supports this function, see Determining Supported COM APIs.

Requirements

OS Versions: Windows CE 2.0 and later.
Header: Ole2.h.
Link Library: Ole32.lib.

See Also

Automation Functions | IOleAdviseHolder | IOleObject | IOleAdviseHolder::EnumAdvise | Determining Supported COM APIs

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.