1 /* BEGIN INCLUDE FILE:  forum_user_list.incl.pl1 */
 2 
 3 declare   user_list_no_attendees        fixed bin,
 4           user_list_ptr                 ptr;
 5 
 6 declare   1 user_list                   aligned based (user_list_ptr),
 7           2 version                     fixed bin,
 8           2 chairman                    aligned,
 9           3 person_id                   char (22) unaligned,
10           3 project_id                  char (9) unaligned,
11           2 transaction_count           fixed bin,
12           2 no_attendees                fixed bin,
13           2 attendees                   (user_list_no_attendees refer (user_list.no_attendees)),
14           3 person_id                   char (22) unaligned,
15           3 project_id                  char (11) unaligned,
16           3 attending                   bit (1) unaligned,
17           3 mbz1                        bit (2) unaligned,  /* version 1 compatibility */
18           3 notify                      bit (1) unaligned,
19           3 removed                     bit (1) unaligned,
20           3 read_only                   bit (1) unaligned,
21           3 deleted                     bit (1) unaligned,
22           3 unused_flags                bit (2) unaligned,
23           3 last_time_attended          fixed bin (71),
24           3 highest_trans_seen          fixed bin;
25 
26 declare   user_list_version_2           fixed bin static init (2) options (constant);
27 
28 /* END INCLUDE FILE:  forum_user_list.incl.pl1 */