1 /*  BEGIN INCLUDE FILE:  tape_volume_status.incl.pl1           */
 2 
 3 dcl  tvstat_ptr pointer;
 4 
 5 dcl 1 tape_volume_status based (tvstat_ptr),
 6     2 volume_name char (6),            /* volume name                       */
 7     2 volume_id char (6),              /* volume identifier from VOL1 label */
 8     2 volume_seq fixed bin,            /* sequence of volume in volume set  */
 9     2 tape_drive char (32),            /* device name                       */
10                                        /* "" if volume not mounted          */
11     2 read_errors fixed bin,           /* read error count                  */
12     2 write_errors fixed bin;          /* write error count                 */
13 
14 /*  END INCLUDE FILE:  tape_volume_status.incl.pl1             */