Hi, we would like to create a project containing a simple fortran exe and a simple fortran dll.
when we try to execute we have 'Error 29, Call to missing routine : _SUBSIMPLE@0 at 0x00401027'
the code is: (exe)
F_stdcall SubSimple call SubSimple() stop end
( dll ) SUBROUTINE SubSimple PRINT *,'Simple subroutine called' END SUBROUTINE
We also try with exportall switch, without success.
How can we solve? Have you some example of fortran exe calling fortran dll? thanks.