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,5d708145f98f6273 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2004-04-13 08:09:41 PST Path: archiver1.google.com!news1.google.com!news.glorb.com!newsrout1.ntli.net!news.ntli.net!newspeer1-win.server.ntli.net!newsfe1-win.POSTED!53ab2750!not-for-mail From: chris User-Agent: Mozilla Thunderbird 0.5 (X11/20040208) X-Accept-Language: en-us, en MIME-Version: 1.0 Newsgroups: comp.lang.ada Subject: Re: Access type conversions, how? References: <107mgcjspsour11@corp.supernews.com> In-Reply-To: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Message-ID: Date: Tue, 13 Apr 2004 16:11:56 +0100 NNTP-Posting-Host: 81.107.63.68 X-Trace: newsfe1-win 1081868907 81.107.63.68 (Tue, 13 Apr 2004 15:08:27 GMT) NNTP-Posting-Date: Tue, 13 Apr 2004 15:08:27 GMT Organization: NTL Xref: archiver1.google.com comp.lang.ada:7054 Date: 2004-04-13T16:11:56+01:00 List-Id: Luke A. Guest wrote: > Well, I know that! But, I don't want to have different Matrix types > for different platforms, and that's essentially what that will mean. Why not use this? type GLMatrix is array (1 .. 15) of GLFloat; pragma Convention(C, GLMatrix); What do you want to do? Pass an array to a C function or an array of arrays?