1 /* Begin include file file_system_operations_.incl.pl1 BIM 8309 */
 2 /* Modified 1984.12.17 MAP: change FS_STANDARD_TYPES (4) to -multisegment_file */
 3 /* format: style3,indcomtxt */
 4 
 5 /**** Names of the operations supported by the extended object
 6       software (file_system_/object_type_). */
 7 
 8 /**** These MUST be in alphabetical order!
 9       Changes here must force recompilation of users of the include file */
10 
11 declare   FS_OPERATIONS       (22) char (64) unaligned init (
12                                                             /** */
13                               "add_acl_entries",
14                               "add_extended_acl_entries",
15                               "chname_file",
16                               "copy",
17                               "delentry_file",
18                               "delete_acl_entries",
19                               "get_bit_count",
20                               "get_max_length",
21                               "get_ring_brackets",
22                               "get_switch",
23                               "get_user_access_modes",
24                               "list_acl",
25                               "list_extended_acl",
26                               "list_switches",
27                               "replace_acl",
28                               "replace_extended_acl",
29                               "set_bit_count",
30                               "set_max_length",
31                               "set_ring_brackets",
32                               "set_switch",
33                               "suffix_info",
34                               "validate"                    /** */
35                               ) int static options (constant);
36 
37 declare HIGHEST_FS_OPERATION_INDEX fixed bin init (22) int static options (constant);
38 
39 declare   FS_STANDARD_TYPES   (5) char (32) int static options (constant) init (
40                                                             /** */
41                               "-directory",                 /** 1 */
42                               "-dm_file",                   /** 2 */
43                               "-link",                      /** 3 */
44                               "-multisegment_file",         /** 4 */
45                               "-segment"                    /** 5 */
46                               );
47 
48 declare HIGHEST_FS_STANDARD_TYPE_INDEX fixed bin init (5) int static options (constant);
49 
50 /* End include file file_system_operations_.incl.pl1 */