1 /* BEGIN INCLUDE FILE ... hasp_device_data.incl.pl1 */
 2 /* Created:  November 1979 by G. Palter */
 3 
 4 /* HASP device types */
 5 
 6 dcl (HASP_CONSOLE             initial (1),                  /* operator's console */
 7      HASP_READER              initial (2),
 8      HASP_PRINTER             initial (3),
 9      HASP_PUNCH               initial (4))
10           fixed binary static options (constant);
11 
12 
13 /* Name of each type of device as used by the remote I/O daemon software */
14 
15 dcl  HASP_DEVICE_NAMES (4) character (32) static options (constant) initial ("teleprinter", "reader", "printer", "punch");
16 
17 
18 /* Maximum record length for each type of device */
19 
20 dcl  HASP_MAX_DEVICE_RECORD_LTHS (4) fixed binary (21) static options (constant) initial (80, 80, 132, 80);
21 
22 /* END INCLUDE FILE ... hasp_device_data.incl.pl1 */