다음을 통해 공유


컴파일러 오류 C3713

'method': 이벤트 처리기 메서드에는 원본 'method'와 동일한 함수 매개 변수가 있어야 합니다.

원본 이벤트 메서드와 동일한 매개 변수를 사용하지 않는 이벤트 처리기 메서드를 정의했습니다. 이 오류를 해결하려면 이벤트 처리기 메서드에 원본 이벤트 메서드의 매개 변수와 동일한 매개 변수를 지정합니다.

다음 샘플에서는 C3713을 생성합니다.

// C3713.cpp
// compile with: /c
[event_source(native)]
class CEventSrc {
public:
   __event void event1(int nValue);
   // try the following line instead
   // __event void event1();
};

[event_receiver(native)]
class CEventRec {
public:
   void handler1() {}

   void HookEvents(CEventSrc* pSrc) {
      __hook(&CEventSrc::event1, pSrc, &CEventRec::handler1);   // C3713
   }

   void UnhookEvents(CEventSrc* pSrc) {
      __unhook(&CEventSrc::event1, pSrc, &CEventRec::handler1); // C3713
   }
};