1 /* begin include file - access_audit_encoded_op.incl.pl1 */ 2 3 dcl 1 encoded_access_op aligned based, 4 2 audit_type unal, 5 3 object_type fixed bin (4) uns unal, 6 3 access_type fixed bin (2) uns unal, 7 2 operation_index fixed bin (12) uns unal, 8 2 detailed_operation fixed bin (18) uns unal; 9 10 /* object_type = Seg, Dir, Rcp, Admin, Special, Other 11 access_type = None, Modify_Acl, Modify, Read 12 operation_index is the index of this code in 13 access_operations_$oper_codes and the index of 14 the text descriptor in access_operations_$text_offest_table 15 (see access_operations_.incl.pl1) 16 detailed_operation is additional info inserted by the 17 caller of the subsystem performing the operation 18 */ 19 20 /* end include file - access_audit_encoded_op.incl.pl1 */