Hello, I wrote a Fortran program (in IVF 11) that successfully finds, loads, and calls a DLL (also Fortran written and compiled in IVF11). I need to migrate my calling program to G77 and when I compile, the G77 compiler trips right away on
USE dfwin
USE dflib
which are the libraries that contain references to the LoadLibrary(), getProcAddress(), and pointer structures that I am using.
Does anyone have an example of loading and calling a DLL with some code that can be compiled in G77?
Thanks in advance,
David
USE dfwin
USE dflib
which are the libraries that contain references to the LoadLibrary(), getProcAddress(), and pointer structures that I am using.
Does anyone have an example of loading and calling a DLL with some code that can be compiled in G77?
Thanks in advance,
David