在 64 位环境中加载本机 COM DLL
我有一个 C++ 中的 32 位/64 位 COM DLL:mycom32.dll、mycom64.dll。它们完全相同,但 mycom32.dll 是针对 32 位编译的,而 mycom64.dll 是针对 64 位编译的。 这意味着两个 DLL 具有相同的 UUID 和相同的 CLSID!
现在,有时我想从 32 位进程使用这个 COM,有时我想从 64 位进程使用这个 COM。
是否可以在不创建两个不同的 CLSID 的情况下加载正确的 DLL,并在运行时检查进程是否为 32 位/64 位?
I have a 32bit/64bit COM DLLs in C++: mycom32.dll, mycom64.dll. Both of them are exactly the same but mycom32.dll is compiled for 32bit and mycom64.dll is compiled for 64bit.
That means that BOTH DLLs have the same UUID and the same CLSID!
Now, sometimes I want to use this COM from 32bit processes and sometimes I want to use this COM from 64bit processes.
Is it possible to load the correct DLL without creating two different CLSIDs and check during runtime if the process is 32bit/64bit?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
应该可以毫无问题地注册它们;这是注册表重定向的一部分应该可以解决。
这里有一个更详细说明 这是如何工作的。
It should be possible to register both of them without issue; this is part of what Registry Redirection is supposed to solve.
Here's a more detailed explanation of how this works.