1 /*        BEGIN INCLUDE FILE   mrds_dsm_fil_str.incl.pl1
 2 
 3    Created October, 1978 for release in MR 7.0                        */
 4 
 5 dcl 1 dsm_file_str based,                                   /* dsm file structure */
 6     2 key,                                                  /* vfile_ key */
 7       3 submodel_fil_name char (35),                        /* Submodel_file  name prefixed by "file:" */
 8     2 record,                                               /* vfile record */
 9       3 model_fil_name char (30),                           /* Model file name */
10       3 fill bit(18) unal, /* pad field */
11      3 no_relations fixed bin,                              /* Number of relation in this file */
12       3 relation_info (dsm_num_freln_alloc refer (no_relations)),
13         4 submodel_freln_name char (32),                              /* Submodel relation name */
14         4 model_freln_name char (32);                       /* Model relation name */
15 
16 dcl  dsm_num_freln_alloc fixed bin;                         /* Number of relations in relation for allocation purposes */
17 
18 
19 
20 /*        END INCLUDE FILE     mrds_dsm_fil_str.incl.pl1 */
21