1 /* BEGIN INCLUDE FILE dm_rcm_opening_info.incl.pl1 */
 2 
 3 /* HISTORY:
 4 Written by Matthew Pierret, 03/15/83.
 5 Modified:
 6 07/28/83 by Matthew Pierret: Changed name from dm_rm_opening_info.incl.pl1 to
 7             dm_rcm_opening_info.incl.pl1.
 8 */
 9 
10 /* format: style2,ind3 */
11      dcl     1 record_collection_opening_info
12                                     aligned based (record_collection_opening_info_ptr),
13                2 version            char (8) aligned init (RECORD_COLLECTION_OPENING_INFO_VERSION_1),
14                2 current_transaction_id
15                                     bit (36) aligned init ("0"b),
16                2 current_rollback_count
17                                     fixed bin (35) init (0),
18                2 file_opening_id    bit (36) aligned init ("0"b),
19                2 collection_id      bit (36) aligned init ("0"b),
20                2 field_table_ptr    ptr init (null);
21 
22      dcl     record_collection_opening_info_ptr
23                                     ptr init (null);
24      dcl     RECORD_COLLECTION_OPENING_INFO_VERSION_1
25                                     char (8) aligned init ("rc_open1") internal static options (constant);
26 
27 /* BEGIN INCLUDE FILE dm_rcm_opening_info.incl.pl1 */