gpt4 book ai didi

c++ - 查明系统中是否存在 DLL 的最佳方法

转载 作者:可可西里 更新时间:2023-11-01 09:50:46 26 4
gpt4 key购买 nike

我目前正在使用 LoadLibrary 和 FreeLibrary 函数来检查运行我的应用程序的系统中是否存在 dll(mfplat.dll)。我的要求只是检查系统中是否存在 dll,我不需要调用 dll 中的任何函数。有没有更快的方法来检查相同的?

最佳答案

您可以使用 LoadLibraryEx()并为 dwFlags 参数设置 LOAD_LIBRARY_AS_DATAFILE 位。

来自 MSDN:

If this value is used, the system maps the file into the calling process's virtual address space as if it were a data file. Nothing is done to execute or prepare to execute the mapped file.

因此,与普通的 LoadLibrary() 相比,这应该会带来显着的加速。

关于c++ - 查明系统中是否存在 DLL 的最佳方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48006190/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com