Skip to content

Latest commit

 

History

History
44 lines (42 loc) · 1.52 KB

File metadata and controls

44 lines (42 loc) · 1.52 KB
title IUnknown | Microsoft Docs
ms.custom
ms.date 11/04/2016
ms.reviewer
ms.suite
ms.technology
cpp-windows
ms.tgt_pltfrm
ms.topic article
f1_keywords
IUnknown
dev_langs
C++
helpviewer_keywords
COM interfaces, base interface
IUnknown interface
ms.assetid e6b85472-e54b-4b8c-b19f-4454d6c05a8f
caps.latest.revision 12
author mikeblome
ms.author mblome
manager ghogen
translation.priority.ht
cs-cz
de-de
es-es
fr-fr
it-it
ja-jp
ko-kr
pl-pl
pt-br
ru-ru
tr-tr
zh-cn
zh-tw

IUnknown

IUnknown is the base interface of every other COM interface. This interface defines three methods: QueryInterface, AddRef, and Release. QueryInterface allows an interface user to ask the object for a pointer to another of its interfaces. AddRef and Release implement reference counting on the interface.

See Also

Introduction to COM
IUnknown and Interface Inheritance