1 /* BEGIN INCLUDE FILE abs_args.incl.pl1 */
 2 
 3 /* This include file defines a structure to hold the job selection arguments used by the operator abs command.
 4 
 5    Written by T. Casey, January 1979
 6    September 1981, E. N. Kittlitz, made character strings unaligned.
 7 
 8 */
 9 
10 dcl 1 abs_args aligned based (abs_arg_ptr),                 /* ptr to be dcl-ed in procedures that use structure */
11     2 arg_switches,
12       3 user_sw bit (1) unal,
13       3 id_sw bit (1) unal,
14       3 path_sw bit (1) unal,
15       3 entry_sw bit (1) unal,
16       3 sender_sw bit (1) unal,
17       3 queue_sw bit (1) unal,
18       3 absn_sw bit (1) unal,
19       3 abs_star_sw bit (1) unal,
20     2 person char (28) unal,
21     2 project char (9) unal,
22     2 request_id_string char (32) unal,
23     2 dirname char (168) unal,
24     2 ename char (32) unal,
25     2 sender char (32) unal,
26     2 aut_index fixed bin,
27     2 queue fixed bin,
28     2 request_id fixed bin (71);
29 
30 /* END INCLUDE FILE abs_args.incl.pl1 */