1
2
3
4
5 dcl now fixed bin;
6 dcl options_ptr ptr init(null());
7 dcl 1 optionsx aligned based(options_ptr)
8 , 3 word1
9 , 4 option_bit unal
10 , 5 j bit(01)unal
11 , 5 b bit(01)unal
12 , 5 c bit(01)unal
13 , 5 d bit(01)unal
14 , 5 k bit(01)unal
15 , 5 f bit(01)unal
16 , 5 bit_06 bit(01)unal
17 , 5 h bit(01)unal
18 , 5 i bit(01)unal
19 , 5 bits09_12 bit(04)unal
20 , 5 y bit(01)unal
21 , 5 bits14_17 bit(04)unal
22 , 4 device_name bit(12)unal
23 , 4 device_type bit(06)unal
24 , 3 word2
25 , 4 initial_file_size bit(18)unal
26 , 4 max_file_size bit(18)unal
27 , 3 words3_now (now)
28 , 4 optional_specific_permissions
29 , 5 USERID bit(72)unal
30 , 5 permission_bit like permissionsx
31 , 3 word_now_plus_1
32 , 4 end_of_list fixed bin(35)
33 , 3 word_now_plus_2
34 , 4 fill bit(01)unal
35 , 4 user_specified_attributes bit(35)unal
36 ;
37
38 %include gtss_filact_permissions;
39
40