From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.3 required=5.0 tests=BAYES_00,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,3cd4e2d0b0b652ff,start X-Google-Attributes: gid103376,public From: A Schoepel Subject: Multiple GNAT DLLs for a C++ Client? Date: 2000/02/12 Message-ID: <38A59E30.3A462943@mail.earthlink.net>#1/1 X-Deja-AN: 585044248 Content-Transfer-Encoding: 7bit X-Accept-Language: en,es-MX Content-Type: text/plain; charset=us-ascii X-Complaints-To: abuse@pacbell.net X-Trace: typhoon-la.pbi.net 950381467 63.198.146.83 (Sat, 12 Feb 2000 10:51:07 PST) Organization: SBC Internet Services MIME-Version: 1.0 NNTP-Posting-Date: Sat, 12 Feb 2000 10:51:07 PST Newsgroups: comp.lang.ada Date: 2000-02-12T00:00:00+00:00 List-Id: I have successfully linked and used a single Gnat Ada DLL with a client C++ program. However, when I bring in a second Gnat Ada DLL, the application links okay, but it will not run. I have also tried delayed loading of the DLLs into the client (thinking that maybe AdaInit was getting called simultaneously or something), but I can't load the Ada DLLs at runtime with the LoadLibrary function of the Windows API. Has anyone been able to get more than one of these DLLs to work in a C/C++ client? Thanks in advance, Andrew