CComObjectRootEx::InternalQueryInterface

static HRESULT InternalQueryInterface( void* pThis, const _ATL_INTMAP_ENTRY* pEntries, REFIID iid, void** ppvObject );

Return Value

One of the standard HRESULT values.

Parameters

pThis

[in] A pointer to the object that contains the COM map of interfaces exposed to QueryInterface.

pEntries

[in] A pointer to the _ATL_INTMAP_ENTRY structure that accesses a map of available interfaces.

iid

[in] The GUID of the interface being requested.

ppvObject

[out] A pointer to the interface pointer specified in iid, or NULL if the interface is not found.

Remarks

Retrieves a pointer to the requested interface.

InternalQueryInterface only handles interfaces in the COM map table. If your object is aggregated, InternalQueryInterface does not delegate to the outer unknown. You can enter interfaces into the COM map table with the macro COM_INTERFACE_ENTRY or one of its variants.

CComObjectRootEx OverviewClass Members

See Also   CComObjectRootEx::InternalAddRef, CComObjectRootEx::InternalRelease