1
2
3
4
5
6
7
8
9
10 dcl message_ptr ptr;
11
12 dcl (assign_actionx init (1),
13 error_actionx init (2),
14 unassign_actionx init (3),
15 force_actionx init (4),
16 proc_actionx init (5),
17 delete_actionx init (6),
18 add_actionx init (7),
19 attach_acct_actionx init (8)) fixed bin internal static options (constant);
20
21 dcl 1 offset_message based (message_ptr) aligned,
22 (2 actionx fixed bin (8),
23 2 pad bit (9),
24 2 error_count fixed bin (17),
25 2 volume_off bit (18),
26 2 device_off bit (18)) unal;
27
28 dcl 1 name_message based (message_ptr) aligned,
29 (2 actionx fixed bin (8),
30 2 device_name char (7)) unal;
31
32 dcl 1 id_message based (message_ptr) aligned,
33 (2 actionx fixed bin (8),
34 2 pad bit (27)) unal,
35 2 process_id bit (36);
36
37