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=-2.9 required=5.0 tests=BAYES_00,MAILING_LIST_MULTI autolearn=unavailable autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,3d6a32dacf12eb9e X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-10-11 04:38:00 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!newsfeeds.belnet.be!news.belnet.be!fr.usenet-edu.net!usenet-edu.net!enst!enst.fr!not-for-mail From: "David Botton" Newsgroups: comp.lang.ada Subject: Re: Interfacing with C++ Date: Thu, 11 Oct 2001 07:37:24 -0400 Organization: ENST, France Sender: comp.lang.ada-admin@ada.eu.org Message-ID: References: Reply-To: comp.lang.ada@ada.eu.org NNTP-Posting-Host: marvin.enst.fr Mime-Version: 1.0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 7bit X-Trace: avanie.enst.fr 1002800273 83218 137.194.161.2 (11 Oct 2001 11:37:53 GMT) X-Complaints-To: usenet@enst.fr NNTP-Posting-Date: Thu, 11 Oct 2001 11:37:53 +0000 (UTC) To: Return-Path: X-pair-Authenticated: 216.254.101.195 X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4807.1700 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4807.1700 Errors-To: comp.lang.ada-admin@ada.eu.org X-BeenThere: comp.lang.ada@ada.eu.org X-Mailman-Version: 2.0.4 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: comp.lang.ada mail<->news gateway List-Unsubscribe: , List-Archive: Errors-To: comp.lang.ada-admin@ada.eu.org X-BeenThere: comp.lang.ada@ada.eu.org Xref: archiver1.google.com comp.lang.ada:14240 Date: 2001-10-11T07:37:24-04:00 The following works: procedure MyString (C_String : in Interfaces.C.Char_Array) is etc. >From C/C++ CString theStr; MyString ((LPCSTR) theStr); What exactly are you looking to do? David Botton ----- Original Message ----- From: "Hagi Yilmaz" To: Sent: Wednesday, October 10, 2001 4:01 PM Subject: Interfacing with C++ > Hello, > > How Can I map the "CString" in VC++ to Ada 95? > > Can I pass the "CString" from VC++ as parameter to an Ada procedure or > function. > > In fact I Use at the moment the (char *) for Interface, but I have to > allocate it from VC++ or from Ada 95 (chars_ptr) .And of course de-allocate > it, not to cause a storage leak. > > But i thougt if i could use "CString" somehow, i would not have to deal > with memory leaks anymore. > > Can anybody help me for that? ... > > Best Regards. > > Hagi Yilmaz > hagihun@hotmail.com > > > > > _________________________________________________________________ > Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp > > _______________________________________________ > comp.lang.ada mailing list > comp.lang.ada@ada.eu.org > http://ada.eu.org/mailman/listinfo/comp.lang.ada >