次の方法で共有


コンパイラ エラー C3739

'class': event_receiver の 'layout_dependent' パラメーターが True の場合のみ、構文はサポートされます

イベントのインターフェイス全体をフックしようとしましたが、event_receiver 属性の layout_dependent が true ではありません。一度に 1 つのイベントをフックする必要があります。

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

// C3739.cpp
struct A
{
   __event void e();
};

// event_receiver is implied
// [ event_receiver(layout_dependent=false)]

// use the following line instead
// [event_receiver(com, layout_dependent=true), coclass ]
struct B
{
   void f();
   B(A* a)
   {
      __hook(A, a, &B::f);   // C3739
      // use the following line instead to hook a single event
      // __hook(&A::e, a, &B::f);
   }
};

int main()
{
}