1 /* format: style4,delnl,insnl,indattr,ifthen,dclind10 */
 2 /*       Begin include file rcp_requestor_info.incl.pl1
 3  *
 4  *       This include file gives information about the subject,
 5  *       or requestor of the RCP operation.  In one case, absentee
 6  *       requests, the user is the Initializer, so this piece of
 7  *       information tells us about the real requestor of the RCP
 8  *       operation.
 9 */
10 
11 dcl requestor_info_ptr ptr;
12 
13 dcl 1 requestor_info aligned based (requestor_info_ptr),
14     2 user_id char (32),
15     2 current_authorization bit (72) aligned,
16     2 validation_level fixed bin (3);
17 
18 /*  end include file .. rcp_requestor_info.incl.pl1 */