1
2
3
4
5
6 dcl audit_mseg_msg_ptr pointer;
7
8 dcl 1 audit_mseg_msg_info aligned based (audit_mseg_msg_ptr),
9 2 info_type fixed bin (9) uns unal,
10 2 version fixed bin (9) uns unal,
11 2 descriptor unaligned,
12 3 sender_level fixed bin (3) unsigned,
13 3 ms_id bit (72),
14 3 sender_id char (32),
15 3 sender_authorization bit (72),
16 3 sender_max_authorization bit (72),
17 3 ms_access_class bit (72),
18 3 sender_process_id bit (36),
19 3 sender_audit bit (36);
20
21 dcl AUDIT_MSEG_MSG_INFO_VERSION_5 fixed bin (9) uns unal static options (constant) init (5);
22
23
24
25
26