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.3 required=5.0 tests=BAYES_00,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,594935f0c2f19bc4 X-Google-Attributes: gid103376,public From: dewar@merv.cs.nyu.edu (Robert Dewar) Subject: Re: how to pass access string across pragma C interface? Date: 1997/06/23 Message-ID: #1/1 X-Deja-AN: 252149000 References: <866734587.8496@dejanews.com> <01bc7f0c$494ab860$428371a5@dhoossr.iquest.com> Organization: New York University Newsgroups: comp.lang.ada Date: 1997-06-23T00:00:00+00:00 List-Id: David says <> It is reasonable to assume that pointers to constrained array types are easily mapped to C pointers, but it is asking for trouble to pass pointers to unconstrained types. That is because the bounds information must be somehow present, and C cannot know anything about it. Thus code that passes such pointers to C, and even more code that receives such pointers FROM C, is liable to be highly implementation dependent.