1 /* BEGIN INCLUDE FILE: nd_handler_options.incl.pl1 */
 2 
 3 /* This structure is used as the switches argument to nd_handler_$switches
 4 
 5    Jay Pattin 2/27/83 */
 6 
 7 declare   1 nd_handler_options,
 8           2 force                       bit (1) unaligned,  /* ON = delete without query if removing last name */
 9           2 delete                      bit (1) unaligned,  /* ON = query to delete regardless of number of names */
10           2 delete_force                bit (1) unaligned,  /* ON = always delete without query */
11           2 raw                         bit (1) unaligned,  /* ON = call hcs_, not object_type_ */
12           2 library                     bit (1) unaligned,  /* ON = call installation_tools_ for chname */
13           2 mbz                         bit (31) unaligned;
14 
15 /* END INCLUDE FILE: nd_handler_options.incl.pl1 */