Plugin DLLs that depend on other DLLs

前端 未结 3 1446
后悔当初
后悔当初 2021-01-12 00:36

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

3条回答
  •  旧时难觅i
    2021-01-12 00:54

    Another option is to modify the PATH variable. Have a batch file for launching the main app, and set the PATH=%PATH%;%~dp0. This ensures a minimal footprint, with no additional traces left in the system after running.

提交回复
热议问题