C++ COM ActiveX Question:

What is IUnknown interface?

Tweet Share WhatsApp

Answer:

The IUnknown interface lets clients get pointers to other interfaces on a given object through the QueryInterface method, and manage the existence of the object through the IUnknown::AddRef and IUnknown::Release methods.

IUnknown methods can be used to switch between interfaces on an object, add references, and release objects.
You must implement IUnknown as part of every interface.

Download C++ COM ActiveX PDF Read All 22 C++ COM ActiveX Questions
Previous QuestionNext Question
Do you know what is a type library?What is STL, standard template library?