1 2 /* BEGIN INCLUDE FILE tty_editing_chars.incl.pl1 */ 3 4 5 /****^ HISTORY COMMENTS: 6 1) change(80-11-19,JRDavis), approve(), audit(), install(): 7 Created file to declare structure for (get set)_editing_chars 8 control order of tty_. 9 2) change(85-10-16,Negaret), approve(87-06-16,MCR7584), 10 audit(87-07-23,GDixon), install(87-08-04,MR12.1-1056): 11 Add redisplay char (version 3). 12 END HISTORY COMMENTS */ 13 14 15 dcl 1 editing_chars aligned based (editing_chars_ptr), 16 2 version fixed bin, 17 2 erase char (1) unaligned, 18 2 kill char (1) unaligned, 19 2 redisplay char (1) unaligned; 20 21 dcl editing_chars_version_2 fixed bin internal static init (2); 22 dcl editing_chars_version_3 fixed bin internal static init (3); 23 dcl editing_chars_ptr pointer; 24 25 /* END INCLUDE FILE tty_editing_chars.incl.pl1 */