程序中调用LoadLibrary函数装载一个DLL文件,没有指定文件路径,那么Windows操作系统搜索DLL文件的顺序如下:
1.The directory where the executable module for the current process is located.
进程的所在目录
2.The current directory.
当前目录
3.The Windows system directory. The GetSystemDirectory function retrieves the path of this directory.
Windows系统目录
4.The Windows directory. The GetWindowsDirectory function retrieves the path of this directory.
Windows目录
5.The directories listed in the PATH environment variable.
Path环境变量中的目录
当一个DLL文件被装入内存后,其他应用程序不必再重复装入同名的DLL(不论要装入的DLL存放在什么位置)。