1 2 /* Begin include file ...... prt_info.incl.pl1 */ 3 /* last modified 6/12/75 by Noel I. Morris */ 4 5 dcl pip ptr; /* pointer to printer info structure */ 6 7 dcl 1 prt_info based (pip) aligned, /* printer info structure */ 8 2 devname char (4), /* name of device */ 9 2 devx fixed bin, /* device index */ 10 2 model fixed bin, /* printer model number */ 11 2 type fixed bin, /* printer type number */ 12 2 train fixed bin, /* print train ID */ 13 2 line_length fixed bin, /* max length of printed line */ 14 2 print_idcw bit (36), /* IDCW to print 1 line */ 15 2 term_idcw bit (36); /* IDCW to stop printer channel */ 16 17 /* End of include file ...... prt_info.incl.pl1 */ 18