1 /* BEGIN INCLUDE FILE:  ansi_uvl1.incl.pl1 Created by J. A. Bush 11/07/82 */
 2 /* This include file defines the format of the ANSI user volume label record
 3    (UVL1) used by the mtape_ ANSI Per-Format Module */
 4 
 5 /*  format: style4 */
 6 
 7 dcl  ansi_uvl1P ptr;                                        /* pointer on which ansi_uvl1 is based */
 8 
 9 dcl  1 ansi_uvl1 unaligned based (ansi_uvl1P),              /* ANSI UVL1 label */
10        2 label_id char (4),                                 /* "UVL1" */
11        2 auth_code char (3),                                /* authentication code */
12        2 init_date char (6),                                /* Julian date volume initialized (" yyddd") */
13        2 unused char (3),                                   /* Must be blanks */
14        2 installation_id char (32),                         /* Name of site volume initialized at */
15        2 user_id char (32);                                 /* user id (person.project.tag) that initialized volume */
16 
17 dcl  ANSI_UVL1 char (4) int static options (constant) init ("UVL1");
18 
19 /*  END INCLUDE FILE:  ansi_uvl1.incl.pl1                   */