1 /* BEGIN INCLUDE FILE mrds_dsm_header.incl.pl1 2 3 This include file is for internal MRDS use only - it is not to be 4 documented in any user manual. 5 6 81-06-01 Davids: This is a copy of the mrds_dsm_header_str 7 include file, it is to be used by all mrds routines. The 8 structure name has been changed from dsm_header_record to 9 mrds_dsm_header to avoid conflicts when both this include file 10 and mrds_dsm_header_str are included (mrds_dsm_dsmd). 11 */ 12 13 dcl 1 mrds_dsm_header based, /* header structure for a MRDS submodel */ 14 2 dsm_generator_version fixed bin init (0), /* version number of submodel created by CMDSM */ 15 2 date_time_generated fixed bin (71) init (0), /* convert data to binary form of creation time */ 16 2 database_pn char (168) init (""), /* pathname of database this submodel is valid for */ 17 2 name char (32) init (""), /* identifying name for this header structure */ 18 2 num_of_relations fixed bin (35) init (0), /* number of relations in submodel view of database */ 19 2 creator_id char (32) init ("") ; /* the person.project.tag of the submodel creator */ 20 21 /* END INCLUDE FILE mrds_dsm_header.incl.pl1 */