次の方法で共有


dual

デュアル インターフェイスとして .idl ファイルを配置します。

[dual]

解説

double C++ のインターフェイスに属性を指定すると生成された .idl ファイル内でインターフェイスがライブラリ ブロック内に配置します。

使用例

次のコードはインターフェイス定義の前に double を使用する属性ブロックです :

// cpp_attr_ref_dual.cpp
// compile with: /LD
#include <windows.h>
[module(name="MyLibrary")];

[uuid("2F5F63F1-16DA-11d2-9E7B-00C04FB926DA"), dual]

__interface IStatic : IDispatch 
{
   HRESULT Func1(int i);
   [   propget, 
      id(1), 
      bindable, 
      displaybind, 
      defaultbind, 
      requestedit
   ] 
   HRESULT P1([out, retval] long *nSize);
   [   propput, 
      id(1), 
      bindable, 
      displaybind, 
      defaultbind, 
      requestedit
   ] 
   HRESULT P1([in] long nSize);    
};

[cpp_quote("#include file.h")];

必要条件

属性コンテキスト

対象

interface

複数回の適用

必要な属性

なし

無効な属性

dispinterface

詳細については属性コンテキスト を参照してください。

参照

関連項目

custom (C++)

dispinterface

object (C++)

__interface

その他の技術情報

IDL 属性

使用法別の属性

Attributes Samples