1 /* BEGIN INCLUDE FILE ... mlsys_address_list.incl.pl1 */
 2 /* Created:  June 1983 by G. Palter */
 3 
 4 /* Definition of an address list -- a collection of addresses used as the value of certain message fields, etc. */
 5 
 6 dcl  1 address_list aligned based (address_list_ptr),
 7        2 version character (8) unaligned,
 8        2 reserved bit (144),                                /* ... exclusively for use by the mail system */
 9        2 n_addresses fixed binary,                          /* # of address in this list */
10        2 addresses (address_list_n_addresses refer (address_list.n_addresses)) pointer;
11 
12 dcl  ADDRESS_LIST_VERSION_2 character (8) static options (constant) initial ("mlsals02");
13 
14 dcl  address_list_ptr pointer;
15 
16 dcl  address_list_n_addresses fixed binary;                 /* reserved exclusively for use by the mail system */
17 
18 /* END INCLUDE FILE ... mlsys_address_list.incl.pl1 */