1 /* BEGIN INCLUDE FILE ... star_info.incl.pl1 */
 2 
 3 dcl esp ptr;
 4 
 5 dcl 1 star_entry based (esp) aligned,                       /* structure returned by star_ */
 6     (2 type bit (2),                                        /* 0 = link, 1 = nondir, 2 = dir */
 7     2 nnames fixed bin (15),                                /* number of names for this entry */
 8     2 nindex fixed bin)unal;                                /* index of name in list */
 9 
10 dcl 1 star_list_branch based (esp) aligned,                 /* structure returned by list_ */
11     (2 type bit (2),
12     2 nnames fixed bin (15),
13     2 nindex fixed bin) unal,
14     2 dtm_or_dtem bit (36),
15     2 dtu bit (36),
16     (2 mode bit (5),
17     2 raw_mode bit (5),                                     /* ret by status_long, not star */
18     2 master_dir bit (1),
19     2 rec_or_bc fixed bin (24)) unal;
20 
21 dcl 1 star_list_link based (esp) aligned,
22     (2 type bit (2),
23     2 nnames fixed bin (15),
24     2 nindex fixed bin) unal,
25     2 (dtm, dtd) bit (36),
26     (2 pln fixed bin,                                       /* length of pathname */
27     2 pindex fixed bin) unal;                               /* index into list of start of link pathname */
28 
29 /* END INCLUDE FILE ... star_info.incl.pl1 */