在 64 位环境中加载本机 COM DLL

发布于 2024-11-03 04:22:09 字数 291 浏览 3 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

烟─花易冷 2024-11-10 04:22:09

应该可以毫无问题地注册它们;这是注册表重定向的一部分应该可以解决。

这里有一个更详细说明 这是如何工作的。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文