1 /* --------- BEGIN graphic_terminal_errors.incl.pl1 --------- */
 2 
 3 dcl  Graphic_terminal_errors (0:64) fixed bin (35) initial
 4     (0,                                                     /* 00 */
 5     (7) graphic_error_table_$term_bad_err_no,               /* 01 - 07 */
 6      graphic_error_table_$term_bad_effector,                /* 10 */
 7      graphic_error_table_$term_bad_input_device,            /* 11 */
 8      graphic_error_table_$term_bad_increment_eff,           /* 12 */
 9     (5) graphic_error_table_$term_bad_err_no,               /* 13 - 17 */
10      graphic_error_table_$term_too_many_levels,             /* 20 */
11      graphic_error_table_$term_no_active_structure,         /* 21 */
12      graphic_error_table_$term_node_too_large,              /* 22 */
13      graphic_error_table_$term_no_room,                     /* 23 */
14      graphic_error_table_$term_too_many_ends,               /* 24 */
15     (3) graphic_error_table_$term_bad_err_no,               /* 25 - 27 */
16      graphic_error_table_$term_node_not_found,              /* 30 */
17      graphic_error_table_$term_bad_increment_node,          /* 31 */
18     (36) graphic_error_table_$term_bad_err_no,              /* 32 - 75 */
19      graphic_error_table_$term_bad_message,                 /* 76 */
20      graphic_error_table_$term_bad_parity,                  /* 77 */
21      graphic_error_table_$term_bad_err_message              /* 100 */
22      );
23 
24 dcl (graphic_error_table_$term_bad_err_no,
25      graphic_error_table_$term_bad_effector,
26      graphic_error_table_$term_bad_input_device,
27      graphic_error_table_$term_bad_increment_eff,
28      graphic_error_table_$term_too_many_levels,
29      graphic_error_table_$term_no_active_structure,
30      graphic_error_table_$term_node_too_large,
31      graphic_error_table_$term_no_room,
32      graphic_error_table_$term_too_many_ends,
33      graphic_error_table_$term_node_not_found,
34      graphic_error_table_$term_bad_increment_node,
35      graphic_error_table_$term_bad_message,
36      graphic_error_table_$term_bad_parity,
37      graphic_error_table_$term_bad_err_message) fixed bin (35) static external;
38 
39 /* ---------- END graphic_terminal_errors.incl.pl1 ---------- */