הערה
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות להיכנס או לשנות מדריכי כתובות.
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות לשנות מדריכי כתובות.
'keyword': '__event' keyword can only be used on COM interfaces, member functions and data members that are pointers to delegates
Remarks
A keyword was used incorrectly.
Example
The following example generates C3626:
// C3626.cpp
// compile with: /c
struct A {
__event int i; // C3626
// try the following line instead
// __event int i();
};