다음을 통해 공유


컴파일러 오류 C3708

'interface': 'keyword'의 부적절한 사용 호환되는 이벤트 원본의 멤버여야 합니다.

인터페이스를 이벤트로 선언하려면 이벤트 선언이 이벤트 원본에 있어야 합니다.

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

// C3708.cpp
// compile with: /c
#define _ATL_ATTRIBUTES 1
#include "atlbase.h"
#include "atlcom.h"

[ module(name="MyLibrary")];

[ object, uuid("00000000-0000-0000-0000-000000000001") ]
__interface I {
   HRESULT func();
};

[ object, uuid("00000000-0000-0000-0000-000000000002") ]
__interface II {
   HRESULT func();
};

__event __interface I;   // C3708

// put the event in an event source
[ coclass, event_source(com), uuid("00000000-0000-0000-0000-000000000003") ]
struct E : II {
   __event __interface II;
};