1 /* BEGIN INCLUDE FILE: delete_options.incl.pl1 */ 2 3 /* control flag bit string passed to delete_$path and delete_$ptr 4 5 Jay Pattin 6/6/83 */ 6 7 declare 1 delete_options, 8 2 force bit (1) unaligned, /* ON = delete w/o asking is safety switch on */ 9 2 question bit (1) unaligned, /* ON = ask user if safety switch on */ 10 2 directory bit (1) unaligned, /* ON = delete directories */ 11 2 segment bit (1) unaligned, /* ON = delete segments */ 12 2 link bit (1) unaligned, /* ON = delete links */ 13 2 chase bit (1) unaligned, /* ON = delete through links */ 14 2 library bit (1) unaligned, /* ON = use installation_tools_ */ 15 2 raw bit (1) unaligned, /* ON = use hcs_, not object_type_ */ 16 2 mbz bit (28) unaligned; 17 18 /* END INCLUDE FILE: delete_options.incl.pl1 */