1 /* Begin include file - access_audit_mseg_info.incl.pl1 */
 2 
 3 /* format: style4,insnl,delnl */
 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,                  /* AAB_mseg_msg */
10        2 version fixed bin (9) uns unal,
11        2 descriptor unaligned,                              /* by-name assignabme */
12          3 sender_level fixed bin (3) unsigned,             /* with the version five message_descriptor */
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                                                             /* corresponds to Version 5 Message Segments */
23 
24 /* end include file - access_audit_mseg_info.incl.pl1 */
25 
26