我的ProjectA是一个C#
类库,只有一个类:
namespace myLib
{
// Interface declaration.
[Guid("Some GUID")]
[InterfaceType(ComInterfaceType.InterfaceIsDual)]
public interface ICsClass
{
[DispId(1)]
int Add(int Number1, int Number2);
};
[Guid("Some GUID")]
[ClassInterface(ClassInterfaceType.None)]
[ProgId("myLib.CsClas")]
public class CsClas : ICsClass
{
public int Add(int a, int b)
{
return a + b;
}
}
}
我已经检查了Register for com interop
使用VS2010
哪些为我生成的dll
&tlb
文件,好的,直到现在。
我的ProjectBWin32 Dll
具有单个文件的应用程序cpp
:
#import "MyLib.tlb" raw_interfaces_only
using namespace MyLib;
…………………………………………………………………………
#ifdef __cplusplus
extern "C"{
#endif
__declspec(dllexport) long Add(int a,int b)
{
CoInitialize(NULL);
long lResult = 0;
// Use Smart pointer
CComQIPtr <ICsClass> spCoClass;
if (SUCCEEDED (spCoClass.CoCreateInstance(L"myLib.CsClas")))
{
spCoClass->Add(a,b,&lResult);
wprintf(L"The result is %d\n", lResult);
std::cout << "#"+lResult << '\n';
}
CoUninitialize();
return lResult;
}
#ifdef __cplusplus
}
#endif
…………
我能够编译这个 Dll,直到现在一切看起来都很好。
当我使用我的 Win32 Dll 并尝试在这一行调用 Add 函数时出现问题:
SUCCEEDED (spCoClass.CoCreateInstance(L"myLib.CsClas"))
永远不会通过,可能是什么问题,没有正确注册吗?
请协助。