Tagged Questions
3
votes
1answer
133 views
c++ project using c# assemblies: how to speedup compile time?
I've got a mixed c++/c# project. The original project is c++ and has been extended using c# assemblies. In the beginning this was ok, but since the c# part is growing I experience a big problem ...
3
votes
4answers
814 views
Using Fortran to call C++ Functions
I'm trying to get some FORTRAN code to call a couple c++ functions that I wrote (c_tabs_ being one of them). Linking and everything works just fine, as long as I'm calling functions that don't belong ...
2
votes
4answers
157 views
How are heaps created in mixed language applications?
We have a front end written in Visual Basic 6.0 that calls several back end DLLs written in mixed C/C++. The problem is that each DLL appears to have its own heap and one of them isn’t big enough. ...
2
votes
7answers
2k views
Can you call C++ functions from Ada?
Can you call C++ functions from Ada?
I'm wondering if there is a way to do this directly, without doing the implementation in C and writing a C++ wrapper & and Ada wrapper, e.g. I would like to ...