如何为应用程序的 DLL 创建单独的文件夹?

发布于 2024-10-19 12:51:07 字数 114 浏览 1 评论 0原文

我已成功地将一个大型 MFC 项目划分为几个较小的 DLL 项目。现在我想在我的应用程序文件夹中有一个名为“DLL”的单独文件夹,其中放置子项目中的所有 DLL。

有人可以指导我如何实现这一目标吗?

I have successfully divided a large MFC project into a couple of smaller DLL projects. Now I want to have a separate folder called "DLL" in my application's folder, where all the all the DLLs from the subprojects are placed.

Can anybody give me guidance in how to achieve this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

乖不如嘢 2024-10-26 12:51:07

如果使用 LoadLibrary,则只需显式指定加载的 DLL 的完整路径即可。

如果 DLL 是隐式链接的,则可以通过两种方式来实现。

  • 让安装程序修改 PATH 变量。这是侵入性的并且“不好的形式”
  • 编写一个“加载器”应用程序,在本地修改路径变量,然后执行真正的可执行文件。

最好的解决方案是简单地将 DLL 放在与可执行文件相同的目录中。

If you use LoadLibrary, you simply have to explicitly specify the full path of the DLLs you load.

If the DLLs are implicitly linked, you can do this in two ways.

  • Have the installer modify the PATH variable. This is intrusive and "bad form"
  • Write a "loader" application that locally modifies the path variable, then executes the real executable.

The best solution would be to simply put the DLLs in the same directory as the executable.

So要识趣 2024-10-26 12:51:07

DLL 重定向是一项相当新的功能(Windows 2000 IIRC)。将 DLL 目录命名为 .exe.local,Windows 将首先检查它是否有通过 LoadLibrary(Ex) 加载的任何内容。这包括延迟加载的 DLL。

DLL redirection is a fairly new feature (Windows 2000 IIRC). Name your DLL directory <myapp>.exe.local, and Windows will check it first for anything loaded via LoadLibrary(Ex). This includes delay-loaded DLLs.

一影成城 2024-10-26 12:51:07

编辑:正如埃里克所指出的,这是行不通的。抱歉。

请参阅动态链接库搜索顺序。简而言之,您可以使用“HKEY_LOCAL_MACHINE\SORTWARE\Microsoft\Windows\CurrentVersion\App Paths”项下的注册表项来执行此操作。
如下所示的 reg 文件显示了如何操作:

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\MyApp.exe]
@="C:\\Program Files\\MyCompany\\MyApp\\MyApp.exe"
"Path"="C:\\Program Files\\MyCompany\\MyApp\\MyDLLs"

EDIT: As pointed out by Eric this doesn't work. Sorry.

See Dynamic-Link Library Search Order. In short you can do so using registry keys under the "HKEY_LOCAL_MACHINE\SORTWARE\Microsoft\Windows\CurrentVersion\App Paths" key.
A reg file like the following shows how:

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\MyApp.exe]
@="C:\\Program Files\\MyCompany\\MyApp\\MyApp.exe"
"Path"="C:\\Program Files\\MyCompany\\MyApp\\MyDLLs"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文