I seem unable to link to my external DLL when using the VS 2008 IDE and modifying the project properties (probably because I do not know what setting to change).
Using the IDE I can build the obj code from the ftn95 code and then use : slink xxx.obj mydll.dll. This creates an exe that will run and reference the function from the DLL.
Whenever I add mydll.dll to the project settings, the dll appears in the slink output but as its before the obj code (which is in the link.lst file) it gives a warning about the function is missing. I can also get this error from the command line if using : slink mydll.dll xxx.obj, it would appear the parameters passed to slink are order sensitive.