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.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,5c1d89373343bef8,start X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news4.google.com!news.glorb.com!border1.nntp.dca.giganews.com!border2.nntp.dca.giganews.com!nntp.giganews.com!sn-xit-02!sn-xit-01!sn-post-01!supernews.com!corp.supernews.com!not-for-mail From: "rcarnesiii" Newsgroups: comp.lang.ada Subject: Unchecked_Conversion help needed Date: Tue, 21 Dec 2004 16:22:01 -0500 Organization: www.talkaboutprogramming.com Message-ID: X-Newsreader: www.talkaboutprogramming.com Content-Type: text/plain; X-Complaints-To: abuse@supernews.com Xref: g2news1.google.com comp.lang.ada:7131 Date: 2004-12-21T16:22:01-05:00 List-Id: I used Ada many years ago and am now getting back into it. Here's my problem, I have to applications and am sending messages between them. Sending procedures function call Send_Message (Partner => The_Handle, Message => Message(X)'Address, Bytes => Message(X).Length, Message_Id => My_Message_Id); On the receiving side my callback routine looks like this Process_Message_From_Partner (Partner : Xxx.The_Handle; Message : in System.Address; Bytes : in Positive; Message_Id : in Xxx.Message_Id) is begin my code end Process_Message_From_Partner; What I would like to do is print out the message on the receiving side. Is this possible using unchecked_conversion ? Thanks