本文介绍了C ++如何加载dll并将其保存在内存中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
你好
我有一个调用某些API的程序.
从调试窗口中,我发现它会经常加载和卸载dll,是否有办法将这些dll保留在内存中以消除加载/卸载效果?
我使用loadlibrary("somedll.dll"),但没有帮助.在调试过程中,我仍然可以看到dll正在加载/卸载.
任何帮助将不胜感激.
C ++,VS2008
Howdy
I have a program which calling some APIs.
From debug window, I found that it will load and unload the dll frequently,is there a way to keep these dll in memory to eliminate the loading/unloading effect?
I use loadlibrary("somedll.dll"), but it doesn''t help. I can still see the dll is load/unload during debug.
Any help will be greatly appreciated.
C++,VS2008
推荐答案
这篇关于C ++如何加载dll并将其保存在内存中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!