1 /* Begin include file special_person_names.incl.pl1 BIM 1984-10-12 */ 2 /* format: style3,idind30 */ 3 4 /* This include file contains the user names which are used for 5 special (non-login) passwords stored in the PNT. Since there 6 are not very many of these (one, as of this writing), having 7 to recompile programs to add them seems a small price to pay. 8 9 At worst, set_special_password and new_user have to be 10 recompiled when one is added. */ 11 12 declare OPERATOR_ADMIN_MODE_USER_NAME char (32) init ("_operator_admin_mode_") int static options (constant); 13 14 declare 1 SPECIAL_USER_NAME_ARRAY (1) aligned int static options (constant), 15 2 print_name char (40) init ("Operator admin mode"), 16 2 command_line_name char (40) init ("operator_admin_mode"), 17 2 pnte_entry_name char (32) init ("_operator_admin_mode_"); 18 19 /* End include file special_person_names.incl.pl1 */