I'm a complete Ada newbie, though I've used Pascal for 2-3 years during HS.

IIRC, it is possible to call Pascal compiled functions from C/C++. Is it possible to call procedures & functions written in Ada from C++?

link|improve this question

feedback

4 Answers

up vote 4 down vote accepted

According to this old tutorial, it should be possible.

However, as illustrated by this thread, you must be careful with the c++ extern "C" definitions of your Ada functions.

link|improve this answer
Back in my Ada days I wrote libraries in Ada and was able to reference them in C programs so it is certainly possible. – cfeduke Nov 1 '08 at 19:42
feedback

Absolutely it's possible. For the past five years I've been working on a system that mixes C++ and Ada.

link|improve this answer
Agreed that you answer his question - but it isn't providing a lot of insight. – Jonathan Leffler Nov 2 '08 at 3:31
I'm afraid I don't have much more insight than that. I haven't worked on the interface code. But then, the OP asked a yes/no question. 8v) – Fred Larson Nov 2 '08 at 5:36
A link or an example would be nice ;) – ceretullis Nov 2 '08 at 16:29
feedback

That kind of thing is done all the time. The trick is to tell both sides to use a "C"-style calling protocol for the routine. In C++ this is done with extern "C" declarations, and in the Ada side with pragma Export ("C", ...

Look those up in your favorite respective reference sources for details. Watch out for pointer and reference paramters!

link|improve this answer
feedback

Yes. Several years ago I wrote a short simple demo to prove it. There were two DLLs, one written in C++ and the other in Ada. They just added constants to floating point values. Two apps, one in C++ and one in Ada, each used both the DLL. So every possible combination of C++ calling/called from Ada existed. It all worked fine. This was on Windows whatever version was current at the time; I don't recall but may have gotten this working on Linux or BeOS.

Now if only I could find the source code from that...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.