1 /*  BEGIN INCLUDE FILE:  dm_ci.incl.pl1  */
 2 
 3 /* DESCRIPTION:
 4 
 5         This include file contains the structure which defines the
 6    format of a control interval.
 7 
 8    ****  NOTE:  This include file depends on the dm_ci_header.incl.pl1 ****
 9    ****  Any program which includes dm_ci.incl.pl1 must also include   ****
10    ****  dm_ci_header.incl.pl1.                                        ****
11 */
12 
13 /* HISTORY:
14 Written by Jeffrey D. Ives, 09/07/82.
15      (design by Andre Bensoussan and Jeffrey Ives.)
16 Modified:
17 11/07/84 by Matthew Pierret:  To remove declarations which are also in
18             dm_ci_header.incl.pl1.
19 */
20 
21 /* format: style2,ind3 */
22 
23      dcl     ci_ptr                 ptr;
24      dcl     1 ci                   aligned based (ci_ptr),
25                2 header             like ci_header_chunks,
26                2 addressable_bytes  char (4072),
27                2 trailer            like ci_trailer_chunk;
28 
29 
30 /*  END INCLUDE FILE:  dm_ci.incl.pl1  */