다음을 통해 공유


컴파일러 오류 C3719

'interface': 인터페이스 기반 이벤트 원본은 COM 이벤트에만 사용할 수 있습니다.

COM이 아닌 컨텍스트에서 인터페이스를 선언했습니다.

다음 샘플에서는 C3719를 생성합니다.

// C3719a.cpp
#define _ATL_ATTRIBUTES 1
#include "atlbase.h"
#include "atlcom.h"

[module(name="MyLibrary", version="1.2", helpfile="MyHelpFile")];

[object]
__interface I {
   HRESULT func1();
};

[event_source(native), coclass]
struct A {
   __event __interface I;   // C3719

   // try the following line instead
   // __event func2();
};

int main() {
}

이 오류를 해결하려면 개체, coclass, event_sourceevent_receiver 특성을 적절하게 적용하여 인터페이스 COM 클래스를 사용하는 클래스를 만듭니다. 예시:

// C3719b.cpp
#define _ATL_ATTRIBUTES 1
#include <atlbase.h>
#include <atlcom.h>

[module(name="xx")];
[object, uuid("00000000-0000-0000-0000-000000000001")]
__interface I {
   HRESULT f();
};

[coclass, event_source(com) , uuid("00000000-0000-0000-0000-000000000002")]
struct MyStruct {
   __event __interface I;
};

[event_receiver(com)]
struct MyStruct2 {
   void f() {
   }
   MyStruct2(I* pB) {
      __hook(&I::f, pB, &MyStruct2::f);
   }
};

int main()
{
}