1
2
3
4
5
6
7
8
9
10
11
12 declare forum_info_ptr ptr;
13
14 declare 1 forum_info aligned based (forum_info_ptr),
15 2 version fixed bin,
16 2 forum_uid bit (36),
17 2 chairman unaligned,
18 3 username char (20),
19 3 project char (9),
20 3 pad char (3),
21 2 attendee_count fixed bin,
22 2 removal_count fixed bin,
23 2 transaction_count fixed bin,
24 2 deletion_count fixed bin,
25 2 last_seen_trans_idx fixed bin,
26 2 last_time_changed fixed bin (71),
27 2 last_time_attended fixed bin (71),
28 2 changes_count fixed bin,
29 2 flags unaligned,
30 3 eligible bit (1),
31 3 mbz1 bit (1),
32 3 removed bit (1),
33 3 notify bit (1),
34 3 attending bit (1),
35 3 mbz2 bit (2),
36 3 read_only bit (1),
37 3 adjourned bit (1),
38 3 mbz3 bit (27);
39
40 declare forum_info_version_1 fixed bin static options (constant) initial (1),
41 forum_info_version_2 fixed bin static options (constant) initial (2);
42
43