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 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,85adbf2c85d62e36 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-11-02 05:23:51 PST Path: archiver1.google.com!news2.google.com!news.maxwell.syr.edu!in.100proofnews.com!in.100proofnews.com!attla2!ip.att.net!attbi_feed3!attbi_feed4!attbi.com!attbi_s52.POSTED!not-for-mail From: "Jeff C," Newsgroups: comp.lang.ada References: Subject: Re: More Florist. X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2800.1158 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 Message-ID: NNTP-Posting-Host: 24.34.215.119 X-Complaints-To: abuse@comcast.net X-Trace: attbi_s52 1067779431 24.34.215.119 (Sun, 02 Nov 2003 13:23:51 GMT) NNTP-Posting-Date: Sun, 02 Nov 2003 13:23:51 GMT Organization: Comcast Online Date: Sun, 02 Nov 2003 13:23:51 GMT Xref: archiver1.google.com comp.lang.ada:1921 Date: 2003-11-02T13:23:51+00:00 List-Id: "Patrice Freydiere" wrote in message news:pan.2003.11.02.06.38.28.506509@free.fr... > > STORAGE ERROR could append if you use external libraries using interfaces > package. > If so, read the RM, it has a lot of informations about interfaces and how > pass parameters. > > Patrice > > > On Sun, 02 Nov 2003 04:44:19 +0000, Freejack wrote: > > > Well, everythings compiled and linked properly. > > > > I can do just everything else I need with Florist. But I'm running into > > trouble here... > > > > type Database_Array is new POSIX.Octet_Array; > > type Database_Array_Pointer is access all Database_Array; > > > > function Get_Network_Info_By_Name > > (Name : POSIX.POSIX_String; > > Storage : Database_Array_Pointer) > > return Network_Info; > > > > Have you tried something like My_Storage : aliased Database_Array(1 .. 255); begin XXX := Get_Network_Info_By_Name(Name => The_Name_You_Already_Figured_Out, Storage => My_Storage'unchecked_access); end; ....or something along those lines...