1 /* START OF: dm_lm_copy_data.incl.pl1 * * * * * * * * * * * * * * * * * * * */ 2 3 /* DESCRIPTION: 4 5 Pointers to copied lock segments data. 6 */ 7 8 /* HISTORY: 9 10 Written by Benson Margulies, 04/29/83. 11 Modified: 12 12/04/84 by Stanford S. Cox: Added Description. 13 */ 14 /* format:style3 */ 15 16 declare lm_copy_data_ptr pointer; 17 declare 1 lm_copy_data aligned based (lm_copy_data_ptr), 18 2 version char (8) aligned, 19 2 n_system_segments fixed bin, /* Output, for convienience */ 20 2 n_segments fixed bin, /* Input */ 21 2 segment_ptrs (lm_copy_data_n_segments refer (lm_copy_data.n_segments)) 22 pointer; 23 24 declare lm_copy_data_n_segments fixed bin; 25 declare LM_COPY_DATA_VERSION_1 char (8) aligned init ("lmdt0001") int static options (constant); 26 27 28 /* END OF: dm_lm_copy_data.incl.pl1 * * * * * * * * * * * * * * * * * * * */