Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.
28177 Discussions

Local Fortran variable changes mid process while calling C# DLL

MatchID_Ash
Beginner
629 Views

I have a C# dll which contains APIs to communicate with our company apps. I have created an additional static library in C++ CLI to consume these APIs through languages like native C++ and Fortran. The library works well with native C++ and most times with Fortran. However, some values change randomly over time in the Fortran code while running.  The values being exchanged are validated to be correct. The problem is with local Fortran variables. They change over course of execution.

0 Kudos
1 Solution
jimdempseyatthecove
Black Belt
576 Views

Try: __declspec(dllexport) extern "C" double GetValue(...

Jim Dempsey

View solution in original post

3 Replies
jimdempseyatthecove
Black Belt
577 Views

Try: __declspec(dllexport) extern "C" double GetValue(...

Jim Dempsey

jimdempseyatthecove
Black Belt
574 Views

Also, Fortran does not support Structured Exception Handling. Thus the Fortran->C++ wrapper function should be compiled without SEH (though it can use SEH features).

Jim Dempsey

0 Kudos
MatchID_Ash
Beginner
509 Views

Thank you Jim. The calling convention was the issue as you pointed out.

0 Kudos
Reply