Skip to content

Latest commit

 

History

History
89 lines (76 loc) · 1.97 KB

File metadata and controls

89 lines (76 loc) · 1.97 KB
title iid_is | Microsoft Docs
ms.custom
ms.date 11/04/2016
ms.reviewer
ms.suite
ms.technology
cpp-windows
ms.tgt_pltfrm
ms.topic language-reference
f1_keywords
vc-attr.iid_is
dev_langs
C++
helpviewer_keywords
iid_is attribute
ms.assetid 2f9b42a9-7130-4b08-9b1e-0d5d360e10ff
caps.latest.revision 9
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

iid_is

Specifies the IID of the COM interface pointed to by an interface pointer.

Syntax

  
      [ iid_is(  
   "expression"  
) ]  

Parameters

expression
A C language expression that specifies an IID of a COM interface pointed to by an interface pointer.

Remarks

The iid_is C++ attribute has the same functionality as the iid_is MIDL attribute.

Example

The following code shows the use of iid_is:

// cpp_attr_ref_iid_is.cpp  
// compile with: /LD  
#include "wtypes.h"  
#include "unknwn.h"  
[dispinterface, uuid("00000000-0000-0000-0000-000000000001")]  
__interface IFireTabCtrl : IDispatch  
{  
   [id(1)] HRESULT CreateInstance([in] REFIID riid,[out, iid_is("riid")]   
   IUnknown ** ppvObject);  
};  
  
[module(name="ATLFIRELib")];  

Requirements

Attribute Context

Applies to Interface parameter, data member
Repeatable No
Required attributes None
Invalid attributes None

For more information, see Attribute Contexts.

See Also

IDL Attributes
Parameter Attributes