1 /* BEGIN INCLUDE FILE - dm_id_list.incl.pl1 */
 2 
 3 /* DESCRIPTION
 4         The id_list structure is used to identify attributes, fields and
 5    dimensions by various modules of the Data Management System.
 6 */
 7 
 8 /* HISTORY:
 9 Written by Matthew Pierret, '82.
10 Modified:
11 08/17/83 by Matthew Pierret: Made version constant 'internal static options
12             (constant)' and to initialize automatic variables.
13 */
14 
15 /* format: style2,ind3 */
16      dcl     1 id_list              aligned based (id_list_ptr),
17                2 version            fixed bin (35),
18                2 number_of_ids      fixed bin (17),
19                2 id                 (il_number_of_ids refer (id_list.number_of_ids)) fixed bin (17);
20 
21      dcl     id_list_ptr            ptr init (null);
22      dcl     il_number_of_ids       fixed bin (17) init (-1);
23      dcl     ID_LIST_VERSION_1      fixed bin (17) init (1) internal static options (constant);
24 
25 /* END INCLUDE FILE - dm_id_list.incl.pl1 */