1 /* BEGIN INCLUDE FILE cds_args.incl.pl1 */
 2 
 3 dcl 1 cds_args based aligned,
 4     2 sections (2),
 5       3 p ptr,                                              /* pointer to data for text/static section */
 6       3 len fixed bin (18),                                 /* size of text/static section */
 7       3 struct_name char (32),                              /* name of declared structure for this section */
 8     2 seg_name char (32),                                   /* name to create segment by */
 9     2 num_exclude_names fixed bin,                          /* number of names in exclude array */
10     2 exclude_array_ptr ptr,                                /* pointer to array of exclude names */
11     2 switches,                                             /* control switches */
12       3 defs_in_link bit (1) unal,                          /* says put defs in linkage */
13       3 separate_static bit (1) unal,                       /* says separate static section is wanted */
14       3 have_text bit (1) unal,                             /* ON if text section given */
15       3 have_static bit (1) unal,                           /* ON if static section given */
16       3 pad bit (32) unal;
17 
18 dcl  exclude_names (1) char (32) based;                     /* pointed to be cds_args.exclude_array_ptr */
19 
20 /* END INCLUDE FILE cds_args.incl.pl1 */