Muistiinpano
Tälle sivulle pääsy edellyttää valtuutusta. Voit yrittää kirjautua sisään tai vaihtaa hakemistoja.
Tälle sivulle pääsy edellyttää valtuutusta. Voit yrittää vaihtaa hakemistoja.
'interface': managed interfaces may not fire events
Remarks
The __event keyword cannot appear inside an interface.
Example
The following example generates C3748:
// C3748.cpp
__interface I {
// try the following line instead
// struct I {
__event void f(); // C3748
};
int main() {
}