컴파일러 오류 C3701
'function': event_source 이벤트가 없습니다.
이벤트 메서드가 없는 클래스에서 event_source 사용하려고 했습니다. 이 오류를 해결하려면 클래스에 하나 이상의 이벤트를 추가합니다.
다음 샘플에서는 C3701을 생성합니다.
// C3701.cpp
[ event_source(native) ]
class CEventSrc {
public:
// uncomment the following line to resolve this C3701
// __event void fireEvent(int i);
}; // C3701
int main() {
}