The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
COM_INTERFACE_ENTRY_IID
Use this macro to enter the interface into the COM map and specify its IID.
COM_INTERFACE_ENTRY_IID( iid , x )
- iid
[in] The GUID of the interface exposed.
- x
[in] The name of the class whose vtable will be exposed as the interface identified by iid.
See COM_INTERFACE_ENTRY Macros for remarks about COM map entries.
Example
BEGIN_COM_MAP(CExample) COM_INTERFACE_ENTRY(IExample) COM_INTERFACE_ENTRY_IID(IID_IDispatch, CExampleDispatch) COM_INTERFACE_ENTRY(IExampleBase) COM_INTERFACE_ENTRY(ISupportErrorInfo) END_COM_MAP()
Requirements
Header: atlcom.h
Show: