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=-0.9 required=5.0 tests=BAYES_00,FORGED_GMAIL_RCVD, FREEMAIL_FROM autolearn=no autolearn_force=no version=3.4.4 X-Google-Thread: a07f3367d7,c468f2242120f388,start X-Google-Attributes: gida07f3367d7,public,usenet X-Google-NewGroupId: yes X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news2.google.com!postnews.google.com!n15g2000yqf.googlegroups.com!not-for-mail From: moongeegee Newsgroups: comp.lang.ada Subject: pass in parameters Date: Tue, 11 May 2010 10:20:09 -0700 (PDT) Organization: http://groups.google.com Message-ID: <5c7838c3-6611-4698-ad8c-f512c652016a@n15g2000yqf.googlegroups.com> NNTP-Posting-Host: 128.244.9.8 Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 X-Trace: posting.google.com 1273598411 29415 127.0.0.1 (11 May 2010 17:20:11 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Tue, 11 May 2010 17:20:11 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: n15g2000yqf.googlegroups.com; posting-host=128.244.9.8; posting-account=I4sQrQoAAAB_eMFl1XfUXGSCBXMZNYKy User-Agent: G2/1.0 X-HTTP-Via: HTTP/1.1 localhost.localdomain[80F40908] (Websense-Content_Gateway/7.1.3 [uScM]) X-HTTP-UserAgent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3,gzip(gfe) Xref: g2news2.google.com comp.lang.ada:11514 Date: 2010-05-11T10:20:09-07:00 List-Id: I am very new in ADA and trying to solve some issues on ADA. The codes are not written by me. Please help. I have a procedure has 4 pass in parameters as below. myInter.Init has only two parameters. Does it mean myInter call other procedure Init, not the one below? procedure Init (init_file : in string; sname : in string; sate : in integer; cstate : in CState_type) is begin myInter.Init (SFile, tName); end;