1 /* START OF:        lib_commands_.incl.pl1                    *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  */
 2 
 3           /*  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  * */
 4           /*                                                                                        */
 5           /* N^H__^Ha_^Hm_^He:  lib_commands_.incl.pl1                                                        */
 6           /*                                                                                        */
 7           /*      This include segment defines the names of all commands which use library          */
 8           /* descriptor segments.  These descriptor segments are the data base of the Multics       */
 9           /* library maintenance tools.  As such, the commands are referred to collectively as      */
10           /* library descriptor commands.  The include segment also defines the command index value */
11           /* associated with each command.  This is used to index into some of the arrays of the    */
12           /* library descriptor.                                                                    */
13           /*                                                                                        */
14           /* S^H__^Ht_^Ha_^Ht_^Hu_^Hs                                                                                   */
15           /*                                                                                        */
16           /* 0) Created by:  G. C. Dixon  in  January, 1975                                         */
17           /*                                                                                        */
18           /*  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  * */
19 
20 
21      dcl  library_info                  fixed bin int static init (1),
22           library_map                   fixed bin int static init (2),
23           library_print                 fixed bin int static init (3),
24           library_fetch                 fixed bin int static init (4),
25           library_cleanup               fixed bin int static init (5);
26                                                             /* index into command_default_values of info      */
27                                                             /*    structure for commands which reference the  */
28                                                             /*    library descriptor.                         */
29      dcl  command_name (5)              char(16) varying int static options(constant) init (
30                                              "library_info", "library_map", "library_print",
31                                              "library_fetch", "library_cleanup"),
32           command_abbrev (5)            char(4) varying int static options(constant) init (
33                                              "li", "lm", "lpr", "lf", "lcln");
34                                                             /* names and abbreviations of lib maint. commands.*/
35 
36 /* END OF:          lib_commands_.incl.pl1                    *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  */