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.2 required=5.0 tests=BAYES_00,INVALID_MSGID, REPLYTO_WITHOUT_TO_CC autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,c654e2fc5e987094 X-Google-Attributes: gid103376,public From: kilgallen@eisner.decus.org (Larry Kilgallen) Subject: Re: translate OpenVMS logical to a string in Ada..? Date: 2000/03/30 Message-ID: <2000Mar29.212856.1@eisner>#1/1 X-Deja-AN: 604140412 References: <8buano$r3i$1@ra.nrl.navy.mil> X-Trace: news.decus.org 954383338 22918 KILGALLEN [216.44.122.34] Organization: LJK Software Reply-To: Kilgallen@eisner.decus.org.nospam Newsgroups: comp.lang.ada Date: 2000-03-30T00:00:00+00:00 List-Id: In article <8buano$r3i$1@ra.nrl.navy.mil>, dandenault@tip.nrl.navy.mil (pat) writes: > > Does anyone know how to translate an OpenVMS logical to a string for use in a > DEC 83 Ada program? I can't find anything in our few manuals. The is done using the same system service you would use from any other language, TRNLNM. From Ada, that would be: STARLET.TRNLNM ( etc... language-independent parameter descriptions are available via HELP SYSTEM_SERVICES $TRNLNM at the DCL prompt. If you cannot find the hardcopy System Service Reference Manual at your site, online documentation has been supplied with VMS for the past 10 years. Of course if you are using the logical name to access files, explicit translation is often not required, as RMS file specification processing will do it automatically.