1 /* Begin include file ... chnl_card.incl.pl1 ... 4/80 MRJ */
 2 
 3 dcl  ccp ptr;                                               /* ptr to CHNL card */
 4 
 5 dcl 1 chnl_card based (ccp) aligned,                        /* dcl for chnl configuration card */
 6     2 chnl char (4),                                        /* "CHNL" */
 7     2 name char (4),                                        /* disk subsystem name */
 8     2 chan_group (4),                                       /* channel groups */
 9       3 iom fixed bin (3),
10       3 chan fixed bin (6),
11       3 num_chans fixed bin,
12     2 unused fixed bin,                                     /* unused config word */
13     2 field_type (14) fixed bin (2) unsigned unaligned,     /* type of config field */
14     2 num_fields fixed bin (8) unsigned unaligned;          /* number of fields present excluding CHNL */
15 
16 /* End include file ... chnl_card.incl.pl1 */