Erro do compilador C3739
'class': a sintaxe só é compatível quando o parâmetro 'layout_dependent' de event_receiver é true
Você tentou conectar uma interface inteira de eventos, mas layout_dependent
no atributo event_receiver não é true; você precisa conectar apenas um evento por vez.
O seguinte exemplo gera o erro 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()
{
}