1 /* BEGIN include file fs_obj_access_codes.incl.pl1 */
 2 
 3 
 4 /****^  HISTORY COMMENTS:
 5   1) change(88-05-12,Lippard), approve(88-05-02,MCR7881),
 6      audit(88-06-16,Fawcett), install(88-08-02,MR12.2-1074):
 7      Changed to add the FS_OBJ_AUDIT_FLAG_MOD constant.
 8                                                    END HISTORY COMMENTS */
 9 
10 
11 /* The possible events within the file system; access codes and
12    detailed operation codes.  October 1984, Keith Loepere. */
13 
14 /* format: style4,indattr,ifthenstmt,ifthen,idind35,^indcomtxt */
15 
16 /* Major file system operations. */
17 
18 dcl  access_operations_$fs_obj_create bit (36) aligned ext;
19 dcl  access_operations_$fs_obj_delete bit (36) aligned ext;
20 dcl  access_operations_$fs_obj_initiate bit (36) aligned ext;
21 dcl  access_operations_$fs_obj_terminate bit (36) aligned ext;
22 dcl  access_operations_$fs_obj_contents_read bit (36) aligned ext;
23 dcl  access_operations_$fs_obj_contents_mod bit (36) aligned ext;
24 dcl  access_operations_$fs_obj_prop_read bit (36) aligned ext;
25 dcl  access_operations_$fs_obj_attr_mod bit (36) aligned ext;
26 dcl  access_operations_$fs_obj_status_mod bit (36) aligned ext;
27 dcl  access_operations_$fs_obj_access_mod bit (36) aligned ext;
28 
29 /* Detailed operations. */
30 
31 dcl  FS_OBJ_CONNECT fixed bin (18) uns init (1) static options (constant);
32 dcl  FS_OBJ_BC_MOD fixed bin (18) uns init (2) static options (constant);
33 dcl  FS_OBJ_TRUNCATE fixed bin (18) uns init (3) static options (constant);
34 dcl  FS_OBJ_ACL_MOD fixed bin (18) uns init (4) static options (constant);
35 dcl  FS_OBJ_RING_MOD fixed bin (18) uns init (5) static options (constant);
36 dcl  FS_OBJ_ACL_RING_MOD fixed bin (18) uns init (6) static options (constant);
37 dcl  FS_OBJ_RENAME fixed bin (18) uns init (7) static options (constant);
38 dcl  FS_OBJ_COPY_SW_MOD fixed bin (18) uns init (8) static options (constant);
39 dcl  FS_OBJ_DAMAGED_SW_MOD fixed bin (18) uns init (9) static options (constant);
40 dcl  FS_OBJ_DNZP_MOD fixed bin (18) uns init (10) static options (constant);
41 dcl  FS_OBJ_ENTRY_BOUND_MOD fixed bin (18) uns init (11) static options (constant);
42 dcl  FS_OBJ_MAX_LEN_MOD fixed bin (18) uns init (12) static options (constant);
43 dcl  FS_OBJ_SAFETY_SW_MOD fixed bin (18) uns init (13) static options (constant);
44 dcl  FS_OBJ_SYNC_SW_MOD fixed bin (18) uns init (14) static options (constant);
45 dcl  FS_OBJ_VOL_DUMP_SW_MOD fixed bin (18) uns init (15) static options (constant);
46 dcl  FS_OBJ_AUTHOR_MOD fixed bin (18) uns init (16) static options (constant);
47 dcl  FS_OBJ_BC_AUTHOR_MOD fixed bin (18) uns init (17) static options (constant);
48 dcl  FS_OBJ_BACKUP_TIMES_MOD fixed bin (18) uns init (18) static options (constant);
49 dcl  FS_OBJ_DATES_MOD fixed bin (18) uns init (19) static options (constant);
50 dcl  FS_OBJ_DT_DUMPED_MOD fixed bin (18) uns init (20) static options (constant);
51 dcl  FS_OBJ_FOR_RELOADER_MOD fixed bin (18) uns init (21) static options (constant);
52 dcl  FS_OBJ_SONS_LVID_MOD fixed bin (18) uns init (22) static options (constant);
53 dcl  FS_OBJ_SOOS_MOD fixed bin (18) uns init (23) static options (constant);
54 dcl  FS_OBJ_MOVE_QUOTA fixed bin (18) uns init (24) static options (constant);
55 dcl  FS_OBJ_CORRECT_QUSED fixed bin (18) uns init (25) static options (constant);
56 dcl  FS_OBJ_DIR_SALVAGE fixed bin (18) uns init (26) static options (constant);
57 dcl  FS_OBJ_MDIR_QUOTA_MOD fixed bin (18) uns init (27) static options (constant);
58 dcl  FS_OBJ_QUOTA_MOD fixed bin (18) uns init (28) static options (constant);
59 dcl  FS_OBJ_QUOTA_RELOAD fixed bin (18) uns init (29) static options (constant);
60 dcl  FS_OBJ_RECLASSIFY fixed bin (18) uns init (30) static options (constant);
61 dcl  FS_OBJ_RECLASSIFY_NODE fixed bin (18) uns init (31) static options (constant);
62 dcl  FS_OBJ_SEG_MOVE fixed bin (18) uns init (32) static options (constant);
63 dcl  FS_OBJ_TRP_MOD fixed bin (18) uns init (33) static options (constant);
64 dcl  FS_OBJ_VOLUME_RETRIEVE fixed bin (18) uns init (34) static options (constant);
65 dcl  FS_OBJ_IACL_MOD fixed bin (18) uns init (35) static options (constant);
66 dcl  FS_OBJ_CREATE_BRANCH fixed bin (18) uns init (36) static options (constant);
67 dcl  FS_OBJ_AUDIT_FLAG_MOD fixed bin (18) uns init (37) static options (constant);
68 
69 /* END include file fs_obj_access_codes.incl.pl1 */