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-Thread: 103376,b808976917d4e4d3 X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!postnews.google.com!g44g2000cwa.googlegroups.com!not-for-mail From: ich_bin_elvis@hotmail.com Newsgroups: comp.lang.ada Subject: Re: Interfaces.C and use clause Date: 20 May 2005 02:29:25 -0700 Organization: http://groups.google.com Message-ID: <1116581365.139348.126170@g44g2000cwa.googlegroups.com> References: <1116511104.203615.78160@g43g2000cwa.googlegroups.com> <1116515936.707901.21760@o13g2000cwo.googlegroups.com> NNTP-Posting-Host: 158.39.162.180 Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-Trace: posting.google.com 1116581370 3519 127.0.0.1 (20 May 2005 09:29:30 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Fri, 20 May 2005 09:29:30 +0000 (UTC) In-Reply-To: <1116515936.707901.21760@o13g2000cwo.googlegroups.com> User-Agent: G2/0.2 Complaints-To: groups-abuse@google.com Injection-Info: g44g2000cwa.googlegroups.com; posting-host=158.39.162.180; posting-account=0aqxew0AAACkVywG-5LBKAoZkI4b4H_t Xref: g2news1.google.com comp.lang.ada:11098 Date: 2005-05-20T02:29:25-07:00 List-Id: When I use : Use Interfaces.C; I get the error 7 use interfaces.C; ^ *** Syntax Error : reserved word "PRIVATE" or start of PACKAGE_SPECIFICATION or MAIN_PROGRAM_ANNOTATION expected. ^ *** Syntax Error : No complete DOTTED_SIMPLE_NAME can be followed by ";" here. Generating listing file ADADLL.LST ... Generating report file ... So I seems like I can't use the use clause in for the use type win32.bool i made a shadow package... And this worked fine. But when I remove the use clause for Interfaces.C I get that operators +-= is not visible an that this could be solved with an use clause.... is there another way. any examples