Delay Loading DLLs(延迟加载 DLL)
问题描述
我迫切需要帮助,我需要在 Visual Studio 中管理应用程序依赖项.应用程序仅在特定版本的 Windows 上链接到 DLL,比如 Windows 7.在其他环境中,不应加载 DLL.我将如何使用 DLL 延迟加载来实现这一目标,因为这个主题对我来说是全新的,并且在网上没有关于这个特定问题的任何好的参考资料.
I am in desperate need of help, I need to manage an application dependency in Visual Studio. The application links to a DLL only on a specific version of windows, lets say Windows 7. and on other environments, the DLL should not be loaded. How will I be able to achieve that using DLL Delay Loading as this topic is completely new to me and there isn't any good references online for this particular matter.
问候
推荐答案
通过在链接器/输入/延迟加载的 DLL 字段中指定它,您的项目可以指定它所依赖的 dll 应该但在需要时加载.对于不同的构建配置,此设置可能不同.
Your project can specify that a dll it depends upon should but be loaded when needed, by specifying it in the Linker/Input/Delay Loaded DLLs field. This setting can be different for different build configurations.
这篇关于延迟加载 DLL的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:延迟加载 DLL
基础教程推荐
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 从 std::cin 读取密码 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07