Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.
Announcements
Important Update: Community Platform Migration​. Learn more​>
29648 Discussions

Local Fortran variable changes mid process while calling C# DLL

MatchID_Ash
Beginner
4,401 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
Honored Contributor III
4,348 Views

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

Jim Dempsey

View solution in original post

3 Replies
jimdempseyatthecove
Honored Contributor III
4,349 Views

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

Jim Dempsey

jimdempseyatthecove
Honored Contributor III
4,346 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
4,281 Views

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

0 Kudos
Reply