1 /* BEGIN INCLUDE FILE ... iod_constants.incl.pl1 */ 2 3 4 /****^ HISTORY COMMENTS: 5 1) change(88-08-31,Brunelle), approve(88-08-31,MCR7911), 6 audit(88-09-29,Wallman), install(88-10-28,MR12.2-1199): 7 Created. 8 END HISTORY COMMENTS */ 9 10 /* This file contains constants used by the I/O Daemon software in various tables */ 11 12 /* format: style4 */ 13 14 /* literals for use with idte.attach_type & iodd_static.attach_type */ 15 dcl (ATTACH_TYPE_IOM init (1), 16 ATTACH_TYPE_TTY init (2), 17 ATTACH_TYPE_DIAL init (3), 18 ATTACH_TYPE_VARIABLE_LINE init (4)) fixed bin int static options (constant); 19 20 /* literals for use with idte.ctl_attach_type & iodd_static.ctl_attach_type */ 21 dcl (CTL_ATTACH_TYPE_TTY init (1), 22 CTL_ATTACH_TYPE_DIAL init (2), 23 CTL_ATTACH_TYPE_MC init (3)) fixed bin int static options (constant); 24 25 /* literals for use with idte.paper_type & iodd_static.paper_type */ 26 dcl (PAPER_TYPE_DEFAULT init (-1), 27 PAPER_TYPE_SINGLE init (1), 28 PAPER_TYPE_CONTINUOUS init (2)) fixed bin int static options (constant); 29 30 /* END INCLUDE FILE ... iod_constants.incl.pl1 */