1 /*  START OF:       dm_tm_modes.incl.pl1                      *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  */
 2 
 3 /* HISTORY:
 4 
 5 Designed by Matthew C. Pierret, 01/26/82.
 6 Coded by Jeffrey D. Ives, 04/30/82.
 7 Modified:
 8 10/18/82 by Steve Herbst: Names changed.
 9 01/19/83 by Steve Herbst: Added (LOWEST HIGHEST)_MODE.
10 */
11 
12 dcl (LOWEST_MODE init (1),
13      HIGHEST_MODE init (8)) fixed bin int static options (constant);
14 
15      dcl     TM_NORMAL_MODE         fixed bin static options (constant) init (1);
16      dcl     TM_STATISTICAL_MODE   fixed bin static options (constant) init (2);
17      dcl     TM_READ_ONLY_MODE     fixed bin static options (constant) init (3);
18      dcl     TM_NEVER_WRITE_MODE   fixed bin static options (constant) init (4);
19      dcl     TM_TEST_NORMAL_MODE   fixed bin static options (constant) init (5);
20      dcl     TM_TEST_STATISTICAL_MODE fixed bin static options (constant) init (6);
21      dcl     TM_TEST_READ_ONLY_MODE fixed bin static options (constant) init (7);
22      dcl     TM_TEST_NEVER_WRITE_MODE fixed bin static options (constant) init (8);
23 
24 /*  END OF:         dm_tm_modes.incl.pl1                      *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  */