Can you explain IUnknown interface used in COM ?
Ask by Amit Singh
Updated 20 Sep 2020
Every COM object implements an interface named IUnknown. It contains three methods:
- QueryInterface: Returns a pointer to another interface
- AddRef: Increments the objects reference count
- Release: Decrements the objects reference count.