1 /* BEGIN INCLUDE FILE:  copy_error_info.incl.pl1
 2 
 3    This is the structure pointed to by sub_error_info.info_ptr when copy_
 4    signals the sub_err_ condition.
 5 
 6    Jay Pattin 6/13/83 */
 7 
 8 declare   1 copy_error_info             aligned based (sub_error_info.info_ptr),
 9           2 copy_options_ptr            ptr,                /* Pointer to input argument of copy_ */
10           2 operation                   char (32),          /* Name of operation that failed. */
11           2 target_err_switch           bit (1) aligned;    /* ON = error was on the target */
12 
13 /* END INCLUDE FILE:  copy_error_info.incl.pl1 */