1 /* BEGIN INCLUDE FILE ... set_prompt_info.incl.pl1 */ 2 3 /* Created 3/13/79 by J. Stern */ 4 5 6 dcl sp_infop ptr; 7 dcl sp_info_version_1 fixed bin static options (constant) init (1); 8 9 dcl 1 sp_info aligned based (sp_infop), /* info structure for set_prompt control order */ 10 2 version fixed bin, 11 2 message char (3) varying; /* text of prompt message */ 12 13 14 /* END INCLUDE FILE ... set_prompt_info.incl.pl1 */