1 /* BEGIN INCLUDE vrm_relation_list.incl.pl1 */
 2 
 3 /* R. Harvey, 11/5/82 */
 4 
 5      dcl     1 vrm_relation_list    aligned based (vrm_relation_list_ptr),
 6                2 version            char (8),
 7                2 number_of_openings fixed bin (35),
 8                2 opening            (vrl_number_of_openings refer (vrm_relation_list.number_of_openings)),
 9                  3 opening_id       bit (36) aligned,
10                  3 open_info_ptr    ptr;
11 
12 
13      dcl     vrm_relation_list_ptr  ptr;
14      dcl     VRM_RELATION_LIST_VERSION_1
15                                     char (8) init ("       1");
16      dcl     vrl_number_of_openings fixed bin (35);
17 
18 
19 /* END INCLUDE vrm_relation_list.incl.pl1 */