如何添加非托管 dll 以显示在“添加引用”的 COM 选项卡中
我目前正在尝试在 http://phash.org 上使用 pHash.dll
不幸的是它是用 C++ 编写的,我必须使用 DLLImport
但我遇到的问题是如何注册 pHash.dll(通过 VS2010/C++ 编译)
我尝试使用 regsrv32 进行注册,但没有成功并给出错误消息。
现在,我如何注册 pHash
以显示在 COM 选项卡中?
I am currently trying to use pHash.dll
on http://phash.org
Unfortunately it was written in C++, I'd have to use DLLImport
But the problem I am having is how to register pHash.dll
(compiled thru VS2010/C++)
I've tried to register using regsrv32
and have been fruitless giving an error message.
Now, How can i register pHash
to show up in COM tab?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
相关 DLL 导出平面 API。 “添加 COM 引用”选项卡适用于公开 COM 对象的 DLL。您需要编写 pinvoke 声明来让 .NET 了解您的平面 API,而不是使用“添加引用”来引用 DLL。
这是一篇有用的文章:
http://msdn.microsoft.com/en-us/杂志/cc164123.aspx
马丁
The DLL in question exports flat APIs. The Add COM References Tab is for DLLs that expose COM objects. Instead of using Add Reference to refer to the DLL, you need to write a pinvoke declaration to let .NET know about your flat API.
Here's a helpful article:
http://msdn.microsoft.com/en-us/magazine/cc164123.aspx
Martyn