1 /* BEGIN INCLUDE FILE ... iodd_msg_constants.incl.pl1 */
 2 /* Created:  April 1982 by G. Palter */
 3 
 4 /* Types of messages which may be written by iodd_msg_ */
 5 
 6 dcl (LOG                      initial (0),                  /* log the message */
 7      NORMAL                   initial (1),                  /* normal message */
 8      ERROR                    initial (2))                  /* an error message */
 9           fixed binary static options (constant);
10 
11 
12 /* Where the message is to be written */
13 
14 dcl (BOTH                     initial (0),                  /* write message to master and slave */
15      MASTER                   initial (1),                  /* write message to master only */
16      SLAVE                    initial (2))                  /* write message to slave only */
17           fixed binary static options (constant);
18 
19 /* END INCLUDE FILE ... iodd_msg_constants.incl.pl1 */