我目前有一个待处理的question开放 - 但是在我处理之后我遇到了一个新问题,而我在尝试构建它时遇到的错误是:
Error 1 error C2695: 'MyEventsSink::OnSomethingHappened': overriding virtual function differs from 'Library::IEventsSink::OnSomethingHappened' only by calling convention
Error 2 error C2695: 'MyEventsSink::SomeTest': overriding virtual function differs from 'Library::IEventsSink::SomeTest' only by calling convention
我尝试了这个错误,但我无法理解。
以下是我正在做的事情,我有一个托管的C#dll类库,它正由本机C ++应用程序使用。 C#接口的代码如下,该接口的实现是用C ++编写的。
C#代码是
[ComVisible(true), ClassInterface(ClassInterfaceType.None), Guid("fdb9e334-fae4-4ff5-ab16-d874a910ec3c")]
public class IEventsSinkImpl : IEventsSink
{
public void OnSomethingHappened()
{
//Doesnt matter what goes on here - atleast for now
}
public void SomeTest(IEventsSink snk)
{
//When this is called - it will call the C++ code
snk.OnSomethingHappened();
}
}//end method
它在C ++中的实现代码是
class MyEventsSink : public Library::IEventsSink
{
public:
MyEventsSink() {}
~MyEventsSink() {}
virtual HRESULT OnSomethingHappened()
{
std::cout << "Incredible - it worked";
}
virtual HRESULT SomeTest(IEventsSink* snk)
{
//Doesnt matter this wont be called
}
};
显然在构建过程中VS2010抱怨上述错误。关于如何解决这些错误的任何建议。
答案 0 :(得分:3)
尝试使用__stdcall
调用约定:
virtual HRESULT __stdcall OnSomethingHappened()
通常,C ++使用__cdecl
调用约定,调用者在调用后从堆栈中删除参数。大多数Windows API函数(包括COM)使用__stdcall
,其中被调用者从堆栈中删除参数。
显然,当覆盖虚函数时,两个函数的调用约定必须相同,因为函数调用是在运行时解析的。