コンパイラ エラー C3705
'function' : イベントのインターフェイスが見つかりません
COM イベントを使用するには、イベントのインターフェイスを定義する必要があります。 なお、以下のサンプルにある ATL ヘッダー ファイルの #include
行は、COM イベントを使用するために必要です。 このエラーを解決するには、コード例の IEvents
インターフェイスの定義をコメント解除します。
次の例では C3705 が生成されます。
// C3705.cpp
// compile with: /c
#define _ATL_ATTRIBUTES 1
#include <atlbase.h>
#include <atlcom.h>
#include <atlctl.h>
[module(dll, name="idid", uuid="12341234-1234-1234-1234-123412341234")];
// Uncomment the following 4 lines to resolve.
// [object, uuid("00000000-0000-0000-0000-000000000003")]
// __interface IEvents : IUnknown {
// HRESULT event1([in] int i);
// };
[dual, uuid("00000000-0000-0000-0000-000000000001")]
__interface IBase {
HRESULT fireEvents();
};
[coclass, event_source(com), uuid("00000000-0000-0000-0000-000000000002")]
class CEventSrc : public IBase {
public:
__event __interface IEvents; // C3705 uncomment IEvents to resolve
HRESULT fireEvents() {
HRESULT hr = IEvents_event1(123);
return hr;
}
};