I'm using CVF and I'm trying to create Fortran dll and call some functions from it from another Fortran program. Here is my code for the program inside the DLL:
subroutine abc(a,b,c)
!DEC$ ATTRIBUTES DLLEXPORT :: abc
implicit none
integer, intent(in) :: a,b
integer, intent(out) :: c
real*8 pi...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.