1 /* BEGIN INCLUDE FILE ... ssu_info_dirs_list.incl.pl1 */
 2 /* Created:  8 December 1981 by G. Palter */
 3 
 4 /* The list of info directories in use by a subsystem invocation */
 5 
 6 
 7 dcl 1 info_dirs_list aligned based (idl_ptr),
 8       2 header,
 9         3 version fixed binary,                             /* version of this structure */
10         3 n_info_dirs fixed binary,                         /* # of info directories in the list */
11       2 info_dirs (info_dirs_list_n_info_dirs refer (info_dirs_list.n_info_dirs)),
12         3 info_dirname character (168) unaligned,           /* absolute pathname of this directory */
13         3 uid bit (36),                                     /* file system unique ID of the directory */
14         3 flags,
15           4 info_dir_valid bit (1) unaligned,               /* "1"b => this info directory is valid */
16           4 pad bit (35) unaligned;
17 
18 dcl  idl_ptr pointer;
19 
20 dcl  info_dirs_list_n_info_dirs fixed binary;               /* for allocating the above structure */
21 
22 dcl  INFO_DIRS_LIST_VERSION_1 fixed binary static options (constant) initial (1);
23 
24 /* END INCLUDE FILE ... ssu_info_dirs_list.incl.pl1 */