1 /* BEGIN INCLUDE FILE com_af_error_info.incl.pl1 April 81 BIM */
 2 /* format: style2 */
 3 
 4 /* info structures for command error and active function error */
 5 /* The include file condition_info_header must be included to use this file */
 6 
 7      declare com_af_error_info_ptr  pointer;
 8      declare 1 com_af_error_info    aligned based (com_af_error_info_ptr),
 9                2 header             aligned like condition_info_header,
10                2 name_ptr           ptr,
11                2 name_lth           fixed bin,
12                2 errmess_ptr        ptr,
13                2 errmess_lth        fixed bin (21),
14                2 max_errmess_lth    fixed bin (21),
15                2 print_sw           bit (1);                /* set this to inform com_err_ that the msg has been printed */
16 
17 declare com_af_error_info_version_3 internal static options (constant) init (3);
18 
19 /* END INCLUDE FILE com_af_error_info */