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-02 13:39:06 PST Path: archiver1.google.com!news2.google.com!news.maxwell.syr.edu!newsfeed.icl.net!newsfeed.fjserv.net!newsfeed.icl.net!newsfeed.fjserv.net!news.tele.dk!news.tele.dk!small.news.tele.dk!newsfeed1.e.nsc.no!nsc.no!nextra.com!uio.no!newsfeed1.uni2.dk!news.get2net.dk.POSTED!53ab2750!not-for-mail Newsgroups: comp.lang.ada Subject: Re: More Florist. References: From: Mark Lorenzen Message-ID: User-Agent: Gnus/5.1002 (Gnus v5.10.2) Emacs/21.2 (gnu/linux) Cancel-Lock: sha1:Dm5K23cnmcjmvm93SP9YHBcGLeA= MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sun, 02 Nov 2003 23:45:53 +0100 NNTP-Posting-Host: 62.84.221.216 X-Complaints-To: abuse@colt-telecom.dk X-Trace: news.get2net.dk 1067809144 62.84.221.216 (Sun, 02 Nov 2003 22:39:04 CET) NNTP-Posting-Date: Sun, 02 Nov 2003 22:39:04 CET Organization: Colt Telecom Kunde Xref: archiver1.google.com comp.lang.ada:1935 Date: 2003-11-02T23:45:53+01:00 List-Id: What are you trying to accomplish? A "normal" DNS query? - Mark Lorenzen Freejack writes: > 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