1 /*  BEGIN INCLUDE FILE mtape_saved_pfm_info.incl.pl1. Created by J. A. Bush 07/28/83 */
 2 /* format: style4 */
 3 /* This include file references information in the mtape_dta.incl.pl1 include file */
 4 
 5 dcl  mspfmip ptr;
 6 
 7 dcl  mtape_saved_pfm_info_version_1 char (8) int static options (constant) init ("mspiv001");
 8 
 9 dcl  1 mtape_saved_pfm_info aligned based (mspfmip),        /* Saved info for "change_module" control OP */
10        2 version char (8),                                  /* Current structure version */
11        2 pfm_name char (32),                                /* PFM name of previous PFM */
12        2 open_mode fixed bin,                               /* Opening mode of PFM we changed to */
13        2 old_pfm_entries like pfm_entries;                  /* old PFM entry variables */
14 
15 /*  END INCLUDE FILE mtape_saved_pfm_info.incl.pl1 */