<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Calling ADA Functions with a C Program in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/calling-ada-functions-with-a-c-program/m-p/3344007#M31328</link>
    <description>&lt;A href="http://www.sysworks.com.au/disk$axpdocmar961/decw$book/d37aaa15.p93.decw$book#608" target="_blank"&gt;http://www.sysworks.com.au/disk$axpdocmar961/decw$book/d37aaa15.p93.decw$book#608&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Explains it in short&lt;BR /&gt;&lt;BR /&gt;Wim</description>
    <pubDate>Thu, 29 Jul 2004 02:35:36 GMT</pubDate>
    <dc:creator>Wim Van den Wyngaert</dc:creator>
    <dc:date>2004-07-29T02:35:36Z</dc:date>
    <item>
      <title>Calling ADA Functions with a C Program</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/calling-ada-functions-with-a-c-program/m-p/3344005#M31326</link>
      <description>Can anybody give me an example of how to call ADA functions within a C program ?&lt;BR /&gt;&lt;BR /&gt;We have some old ADA functions which we would like to call in some new C code we are writing.&lt;BR /&gt;&lt;BR /&gt;Can anybody give me any pointers on how to do code this, and ideally how to compile &amp;amp; link the two together.&lt;BR /&gt;&lt;BR /&gt;Thanks in advance,&lt;BR /&gt;&lt;BR /&gt;Jeff</description>
      <pubDate>Wed, 28 Jul 2004 22:43:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/calling-ada-functions-with-a-c-program/m-p/3344005#M31326</guid>
      <dc:creator>Jefferson Humber</dc:creator>
      <dc:date>2004-07-28T22:43:27Z</dc:date>
    </item>
    <item>
      <title>Re: Calling ADA Functions with a C Program</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/calling-ada-functions-with-a-c-program/m-p/3344006#M31327</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Look at &lt;BR /&gt;&lt;A href="http://h71000.www7.hp.com/commercial/ada/documentation.html" target="_blank"&gt;http://h71000.www7.hp.com/commercial/ada/documentation.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;In the Run-Time Reference look at Appendix B and in the Developing Ada Products on OpenVMS look at 6.2 Linking Mixed-Language Programs.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://h71000.www7.hp.com/commercial/c/docs/5492P.html" target="_blank"&gt;http://h71000.www7.hp.com/commercial/c/docs/5492P.html&lt;/A&gt; &lt;BR /&gt;will help you for C users guide.&lt;BR /&gt;&lt;BR /&gt;Bojan</description>
      <pubDate>Thu, 29 Jul 2004 01:48:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/calling-ada-functions-with-a-c-program/m-p/3344006#M31327</guid>
      <dc:creator>Bojan Nemec</dc:creator>
      <dc:date>2004-07-29T01:48:17Z</dc:date>
    </item>
    <item>
      <title>Re: Calling ADA Functions with a C Program</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/calling-ada-functions-with-a-c-program/m-p/3344007#M31328</link>
      <description>&lt;A href="http://www.sysworks.com.au/disk$axpdocmar961/decw$book/d37aaa15.p93.decw$book#608" target="_blank"&gt;http://www.sysworks.com.au/disk$axpdocmar961/decw$book/d37aaa15.p93.decw$book#608&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Explains it in short&lt;BR /&gt;&lt;BR /&gt;Wim</description>
      <pubDate>Thu, 29 Jul 2004 02:35:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/calling-ada-functions-with-a-c-program/m-p/3344007#M31328</guid>
      <dc:creator>Wim Van den Wyngaert</dc:creator>
      <dc:date>2004-07-29T02:35:36Z</dc:date>
    </item>
    <item>
      <title>Re: Calling ADA Functions with a C Program</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/calling-ada-functions-with-a-c-program/m-p/3344008#M31329</link>
      <description>Hi Jeff,&lt;BR /&gt;differently from other platform, in VMS all passing parameter has managed by OS. This means it isn't important what language you are using but the corresponding of language type and VMS type.&lt;BR /&gt;For example I call C routine from COBOL program simply declaring the parameters.&lt;BR /&gt;Read carefully the Wim's link because it can help you very much.&lt;BR /&gt;I guess you could call ADA function by reference where in parameters point to a copy of value and out parameters point directlu to value.&lt;BR /&gt; &lt;BR /&gt;Antonio Vigliotti&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 29 Jul 2004 02:51:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/calling-ada-functions-with-a-c-program/m-p/3344008#M31329</guid>
      <dc:creator>Antoniov.</dc:creator>
      <dc:date>2004-07-29T02:51:04Z</dc:date>
    </item>
    <item>
      <title>Re: Calling ADA Functions with a C Program</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/calling-ada-functions-with-a-c-program/m-p/3344009#M31330</link>
      <description>Thank you all for you help.&lt;BR /&gt;&lt;BR /&gt;That should do the trick I hope.&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;&lt;BR /&gt;J</description>
      <pubDate>Thu, 29 Jul 2004 11:27:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/calling-ada-functions-with-a-c-program/m-p/3344009#M31330</guid>
      <dc:creator>Jefferson Humber</dc:creator>
      <dc:date>2004-07-29T11:27:17Z</dc:date>
    </item>
  </channel>
</rss>

