1 /* BEGIN: sys_log_error_info.incl.pl1 * * * * * */ 2 3 /****^ HISTORY COMMENTS: 4 1) change(87-04-21,GDixon), approve(87-06-10,MCR7708), 5 audit(87-06-02,Parisek), install(87-08-04,MR12.1-1056): 6 Initial coding. 7 END HISTORY COMMENTS */ 8 9 /* * * * * * * * * * * * * * * * * * * * * * * * * * */ 10 /* */ 11 /* This include file declares the structure passed by sys_log_$general when */ 12 /* it signals the sys_log_error_ condition, because it was called with */ 13 /* mis-formatted input. User's must include condition_info_header.incl.pl1. */ 14 /* */ 15 /* * * * * * * * * * * * * * * * * * * * * * * * * * */ 16 17 dcl 1 sys_log_error_info aligned automatic, 18 2 header like condition_info_header, 19 2 sl_info_ptr ptr; /* ptr to input structure passed to */ 20 /* sys_log_$general. */ 21 22 dcl SYS_LOG_ERROR_INFO_version_1 fixed bin int static options(constant) init(1); 23 dcl SYS_LOG_ERROR_name char(14) int static options(constant) init("sys_log_error_"); 24 25 /* END OF: sys_log_error_info.incl.pl1 * * * * * */