1 /* BEGIN INCLUDE FILE - dm_rlm_header.incl.pl1 */
 2 
 3 /* HISTORY:
 4 Written by Matthew Pierret, 1982.
 5 Modified:
 6 02/25/83 by Matthew Pierret: Added attribute_info_element_id,
 7             header_info_update_count, RELATION_HEADER_VERSION_2.
 8 05/29/84 by Matthew Pierret: Added caller_header_element_id,
 9             RELATION_HEADER_VERSION_3.
10 10/29/84 by Stanford S. Cox:  Changed to not init version.
11 */
12 
13 /* format: style2,ind3 */
14 
15      dcl     1 relation_header      aligned based (relation_header_ptr),
16                2 version            char (8),
17                2 header_info_update_count
18                                     fixed bin (35) aligned init (0),
19                2 record_collection_id
20                                     bit (36) aligned init ("0"b),
21                2 cluster_index_id   bit (36) aligned init ("0"b),
22                2 attribute_info_element_id
23                                     bit (36) aligned init ("0"b),
24                2 index_attribute_map_element_id
25                                     bit (36) aligned init ("0"b),
26                2 caller_header_element_id
27                                     bit (36) aligned init ("0"b);
28 
29      dcl     relation_header_ptr    ptr init (null);
30      dcl     RELATION_HEADER_VERSION_3
31                                     init ("RelHdr 3") char (8) aligned internal static options (constant);
32 
33 /* END INCLUDE FILE - dm_rlm_header.incl.pl1 */