Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
'interface': managed interfaces may not fire events
The __event keyword cannot appear inside an interface.
The following sample generates C3748:
// C3748.cpp
__interface I {
// try the following line instead
// struct I {
__event void f(); // C3748
};
int main() {
}