{ File: [22,320]LogNam.typ - Pascal-3 Include file for Logical Name PA3UTL procedures. Author: Jim Bostwick History: Last Edit: 14-MAY-1988 23:19:10 The types defined here are used by the Logical Name procedures. } Type Logical_table_typ = (Lt_SYS, { System logical name table = 0 } Lt_GRP, { Group table = 1 } Lt_nul, { undefined = 2 } Lt_TSK, { Task table = 3 } Lt_SES { Session (login) table = 4 } ); { Note: the above scalar type is order-dependent, and based upon definition of LT.xxx symbols in CLON$ macro. See RSX Exec Ref manual. } Logical_mask_typ = set of Logical_table_typ; { The mask used in translate logical procedures to inhibit search of one or more tables. }