Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

You can use the dynamic libraries so long as the .dll files are on the DLL Search Path of the .exe

HERE is a page explaining how the search works. So putting the .dll files in the same folder as your .exe will work all the time. Putting them in a different folder will work if you either add it to the path, or the application calls the SetDllDirectory function mentioned in that article.

Hope this helps.