我正在学习com并在基于.net的应用程序中使用它。
我创建了一个简单的MathFunction dll,它有一个函数Add 2 numbers。
然后我使用ComImport在Windows窗体应用程序中加载它。一切正常,没有错误。当我运行应用程序时,我得到的结果是零加2个数字。
我向函数传递了2个参数。
IMathFunc mathFunc = GetMathFunc();
int res = mathFunc.Add(10, 20);
现在为此我得到了结果为0.这里IMathFunc是IUnkown类型的接口。
[ComImport]
[Guid("b473195c-5832-4c19-922b-a1703a0da098")]
[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
interface IMathFunc
{
int Add(int a, int b);
void ThrowError();
}
当我为函数调试它时
int Add(int a,int b)
它显示“a”中的一些bignumber和“b”中的10。
这是我的mathFunction Library
#include<windows.h>
using namespace System;
static const GUID IID_MathFunc =
{ 0xb473195c, 0x5832, 0x4c19, { 0x92, 0x2b, 0xa1, 0x70, 0x3a, 0xd, 0xa0, 0x98 } };
struct IMathFunc:public IUnknown
{
virtual int Add(int a, int b) = 0;
STDMETHOD(ThrowError)() = 0;
};
namespace MathFuncLibrary {
class MathFunc: public IMathFunc
{
volatile long refcount_;
public:
MathFunc();
int Add(int a, int b);
STDMETHODIMP_(ULONG) Release();
STDMETHODIMP_(ULONG) AddRef();
STDMETHODIMP QueryInterface(REFIID guid, void **pObj);
STDMETHODIMP ThrowError();
};
}
int MathFunc::Add(int a, int b)
{
return a + b;
}
STDMETHODIMP_(ULONG) MathFunc::Release()
{
ULONG result = InterlockedDecrement(&refcount_);
if(result==0)delete this;
return result;
}
STDMETHODIMP MathFunc::QueryInterface(REFIID guid, void **pObj)
{
if (pObj == NULL) {
return E_POINTER;
}
else if (guid == IID_IUnknown) {
*pObj = this;
AddRef();
return S_OK;
}
else if (guid == IID_MathFunc) {
*pObj = this;
AddRef();
return S_OK;
}
else {
// always set [out] parameter
*pObj = NULL;
return E_NOINTERFACE;
}
}
STDMETHODIMP_(ULONG) MathFunc::AddRef()
{
return InterlockedIncrement(&refcount_);
}
STDMETHODIMP MathFunc::ThrowError()
{
return E_FAIL;
}
MathFunc::MathFunc() :refcount_(1)
{
}
extern "C" __declspec(dllexport) LPUNKNOWN __stdcall GetMathFunc()
{
return new MathFunc();
}
我错过了导致此错误的任何内容,或者我做错了什么......?
答案 0 :(得分:1)
我得到了Hans Passant的建议。
您需要更改方法
virtual int Add(int a, int b) = 0;
到
virtual STDMETHOD_(UINT32,Add)(int a, int b) = 0;
然后在ComImport界面
int Add(int a, int b);
到
[PreserveSig]int Add(int a,int b);