views:

83

answers:

2

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 and GetProcAddress 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?

+2  A: 

I can think of 3 ways.

  1. put the dlls in the same folder as your application (you cannot do this?)
  2. Use runtime linking. LoadLibrary() and GetProcAddress()
  3. Use a manifest http://msdn.microsoft.com/en-us/library/aa374182(VS.85).aspx

But if the dll isn't in the same folder as the .exe, how are you going to know where it is? forget Windows not knowing, how do you know?

John Knoeller
It is not 'my' application, and I do not really like installing into the folder of 'other' applications. The manifest solution sounds really interesting - I will look into that. Do you have any more references?
Rasmus Faber
+1  A: 

you can specify the path of dll as the parameter of LoadLibrary().