InternalQueryInterface

virtual HRESULT InternalQueryInterface(
REFIID riid, 
void **ppUnk);

Parameters

riid

The UUID of the requested interface.

ppUnk

Pointer to a buffer to receive a pointer to an interface, if implemented.

Return Code

S_OK 
Returned if the interface is implemented.

E_NOINTERFACE

Comments

CUnknownObject overridable. Derived classes should override this method to respond to their own interfaces. You will find that the base class CctlPropertyPage implementation of InternalQueryInterface is sufficient for most cases. If you do override this method, then you will be required to call CCtlPropertyPage::InternalQueryInterface for any interfaces that your property page does not support.