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-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,85adbf2c85d62e36 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-11-01 23:32:50 PST Path: archiver1.google.com!news2.google.com!news.maxwell.syr.edu!newsfeed.icl.net!newsfeed.fjserv.net!newsfeed.freenet.de!newsfeed.stueberl.de!proxad.net!feeder2-1.proxad.net!news1-2.free.fr!not-for-mail From: "Patrice Freydiere" Subject: Re: More Florist. Date: Sun, 02 Nov 2003 07:38:33 +0100 User-Agent: Pan/0.13.0 (The whole remains beautiful) Message-ID: Newsgroups: comp.lang.ada References: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15 Organization: Guest of ProXad - France NNTP-Posting-Date: 02 Nov 2003 08:32:50 MET NNTP-Posting-Host: 62.147.3.71 X-Trace: 1067758370 news1-2.free.fr 227 62.147.3.71:32782 X-Complaints-To: abuse@proxad.net Xref: archiver1.google.com comp.lang.ada:1914 Date: 2003-11-02T08:32:50+01:00 List-Id: 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; > > > Now, setting up the Posix_String is pretty straightforward. But I'm > totally lost on this Database_Array_Pointer business. I've tried about a > zillion different possible combinations and either it wont compile or I > get STORAGE_ERROR at runtime. > > No problems with the other stuff. Just this. I give up. > > Any pointers(no pun intended) would be greatly appreciated. > > Thanks. > > > Freejack