Condividi tramite


Errore del compilatore C3739

'class': la sintassi è supportata solo quando il parametro 'layout_dependent' di event_receiver è true

Si è tentato di associare un'intera interfaccia di eventi, ma layout_dependent in event_receiver attributo non è true. È necessario associare un singolo evento alla volta.

L'esempio seguente genera l'errore 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()
{
}