컴파일러 오류 C3724
이벤트에 다중 스레딩을 사용하려면 #include <windows.h>를 사용해야 합니다.
이벤트와 함께 다중 스레딩을 사용하는 경우 windows.h 파일이 필요합니다. 이 오류를 해결하려면 이벤트 원본 및 이벤트 수신기가 정의된 파일의 맨 위에 추가 #include <windows.h>
합니다.
// C3724.cpp
// uncomment the following line to resolve
// #include <windows.h>
[event_source(native), threading(apartment)]
class CEventSrc {
public:
__event void event1(); // C3724
};
[event_receiver(native)]
class CEventRec {
public:
void handler1() {
}
void HookEvents(CEventSrc* pSrc) {
__hook(CEventSrc::event1, pSrc, CEventRec::handler1);
}
void UnhookEvents(CEventSrc* pSrc) {
__unhook(CEventSrc::event1, pSrc, CEventRec::handler1);
}
};
int main() {
}