I am writing a DLL to plug into another (3rd party) application. The DLL will need to depend on another set of DLLs (for license reasons I cannot link statically).
I would like my DLL to be "xcopy-deployable" to any directory. I would also like not to require adding this directory to the path.
If I just build the DLL the usual way, Windows will refuse to load the DLL, since it cannot find the DLLs next to the current process.
Are there any good options for helping Windows locate the DLL?
To answer some questions:
- The DLL is written in C++.
- The extra DLLs are QT-dlls.
- I would like to place the extra DLLs in the same folder as my plugin DLL. I can get the name of that folder from
GetModuleFileName
. - The application is Firefox, the DLL is a PKCS#11 security module.
- The application loads the DLL using the full path to the DLL (the user supplies it when installing the plugin).
- Requiring that the DLLs be placed in System32 or next to the application would work, but it is a bit messy and could cause problems with uninstallers.
LoadLibrary
andGetProcAddress
would of course work, but is not really feasible in my case. I am using hundreds, if not thousands, of methods in the other DLLs. I really need to use the import-libraries.
I had thought about using delay-loaded dlls combined with SetDllDirectory
in DllMain. Have anyone tried anything like this?