My main problem is this: my program (MyProgram.exe) is dependent on the DLL for another program (OtherProgram), and I try to avoid repackaging the new DLL every time I update OtherProgram. I would like to have the MyProgram.exe link in the OtherProgram DLL when it starts, but I'm not entirely sure that Windows allows this. Therefore, if there is some workaround that will also be acceptable.
And only for some background, the platform is Windows 7 x64, and MyProgram.exe works fine when I create a symbolic link in the MyProgram.exe project directory in the DLL in the OtherProgram installation directory. When I try to start it without a symbolic link, I get a message stating that "the program does not start because the error" OtherProgramDLL.dll is missing from your computer ".
Any tips or links to relevant information are welcome!
EDIT: Clarification: The DLL is not linked at compile time, this problem occurs at runtime
source
share