1 /* begin include file - access_audit_user_info.incl.pl1 */ 2 3 /* 85-01-21 EJ Sharpe - changed (min max)_auth to auth range */ 4 /* 85-01-07 EJ Sharpe - added min_authorization */ 5 /* 84-10-09 EJ Sharpe - created */ 6 7 /* The structure defined here is passed to the access_audit_ 8 entrypoints which deal with proxy users: 9 */ 10 11 dcl audit_user_info_ptr pointer; 12 13 dcl 1 audit_user_info based (audit_user_info_ptr) aligned, 14 2 version char (8), 15 2 user_id char (32), 16 2 ring fixed bin (3) uns unal, 17 2 pad bit (33) unal, 18 2 process_id bit (36) aligned, 19 2 authorization bit (72) aligned, 20 2 authorization_range (2) bit (72) aligned, 21 2 audit_flags bit (36) aligned; 22 23 dcl audit_user_info_version_1 char (8) init ("adtusrv1") 24 internal static options (constant); 25 26 /* end include file - access_audit_user_info.incl.pl1 */