'keyword': '__event' キーワードは COM インターフェイス、メンバー関数、またデリゲートのポインターであるデータ メンバーでのみ使用できます
キーワードが正しく使用されていません。
次の例では C3626 が生成されます。
// C3626.cpp
// compile with: /c
struct A {
__event int i; // C3626
// try the following line instead
// __event int i();
};