1 /* BEGIN INCLUDE FILE mrds_dsm_header_info.incl.pl1 - NSDavids 81-01-29
 2 
 3 
 4    This include file is the user's view of the header  record  of  a
 5    submodel file. It is not to be used in any mrds code.
 6 
 7    HISTORY
 8 
 9    81-01-29 Davids: written
10 */
11 
12 
13 
14 
15 
16 dcl 01 mrds_dsm_header_info aligned based (mrds_dsm_header_info_ptr),
17     02 version fixed bin,
18     02 submodel_version fixed bin,
19     02 date_time_created fixed bin (71),
20     02 creator char (32),
21     02 database_path char (168),
22     02 number_of_relations fixed bin;
23 
24 dcl mrds_dsm_header_info_ptr ptr;
25 
26 
27 /* END INCLUDE FILE mrds_dsm_header_info.incl.pl1 */