1 /* BEGIN INCLUDE FILE dm_cm_increment_info.incl.pl1 */
 2 
 3 /* DESCRIPTION:
 4 This structure is used to locate an array of increment words to be used
 5 in one or more postcommit handlers.  The structure elements have the following
 6 meaning:
 7 increments_ptr  - pointer to the structure containing the array of word
 8                   increment values in the users address space.
 9 offset_in_bits  - is the offset from the begining of the structure to the
10                   first word increment.  This value is also used to locate
11                   the first word increment within the collection manager
12                   element, that is, it is assumed that the structure
13                   containing the increment words is stored in begining of
14                   a collection manager element.
15 number_of_words - number of word increment values.
16 */
17 
18 /* HISTORY:
19 Written by R. Michael Tague, 03/06/85.
20 Modified:
21 */
22 
23 /* format: style5,^indcomtxt */
24 
25 dcl     cm_increment_info_ptr   ptr;
26 dcl     1 cm_increment_info     aligned based (cm_increment_info_ptr),
27           2 version             char (8),
28           2 increments_ptr      ptr,
29           2 offset_in_bits      fixed bin (35),
30           2 number_of_words     fixed bin (35);
31 
32 dcl     CM_INCREMENT_INFO_VERSION_1
33                                 char (8) aligned internal static
34                                 options (constant) init ("cmword01");
35 
36 /* END INCLUDE FILE dm_cm_increment_info.incl.pl1 */