次の方法で共有


コンパイラ エラー C3463

'type': 型は属性 'implements' で使用できません

implements 属性に正しくない型が渡されました。 たとえば、 implementsにインターフェイスを渡すことはできますが、インターフェイスへのポインターを渡すことはできません。

次の例では C3463 が生成されます。

// C3463.cpp
// compile with: /c
#include <windows.h>
[object, uuid("00000000-0000-0000-0000-000000000001")]
__interface X {};

typedef X* PX;

[ coclass, uuid("00000000-0000-0000-0000-000000000002"), implements(interfaces=PX) ]   // C3463
// try the following line instead
// [ coclass, uuid("00000000-0000-0000-0000-000000000002"), implements(interfaces=X) ]
class CMyClass : public X {};