How do I get MyPlugIn.api to find my additional DLLs?
I am trying to do the following. BasicPlugin.api calls a managed C++ DLL. That DLL calls a C# DLL (which has all the code I want to add to the plug in).
According to VisualStudio's debugger, the plugin is finding, loading, & calling the managed C++ dll. It is failing to find the C# dll.
According to fuslogvw.exe, neither of them can be found because it is looking in file:///C:/Program Files (x86)/Adobe/Acrobat DC/Acrobat for the files, not C:\Program Files (x86)\Adobe\Acrobat DC\Acrobat\plug_ins.
What's the solution for this? The only thing I can think of is to explicitly call LoadLibrary() which strikes me as kludgy.
Or maybe have the C++ plug-in directly call C# but that is a lot more complex and brings COM into the picture (yuck).
thanks - dave
