1 
 2 /* BEGIN INCLUDE .................. imp_dcw_list .............. */
 3 
 4 /* FOR IMP DCM */
 5 
 6 /* File to describe the structure of read and write DCW lists */
 7 
 8 dcl  message_offset fixed bin static options (constant) init (3);
 9                                                             /* Offset of message from beginning of the list */
10 
11 /* Template of read and write dcw lists follow. */
12 
13 
14 dcl  1 read_list based aligned,
15        2 idcw aligned like idcw,
16        2 ddcw aligned like dcw,
17        2 length fixed bin,
18        2 message bit (8100) aligned;
19 
20 dcl  1 write_list based aligned,
21        2 idcw aligned like idcw,
22        2 ddcw aligned like dcw,
23        2 length fixed bin,
24        2 message bit (8100) aligned;
25 
26 %include iom_pcw;
27 %include iom_dcw;
28 
29 /* END INCLUDE....................... imp_dcw_list ............... */