1 /* BEGIN INCLUDE FILE mrds_dsm_display_flags.incl.pl1 -- odf, 11/03/78 */ 2 3 dcl 1 dsm_display_flags aligned based (ddf_ptr), /* flags to control submodel display */ 4 2 append_listing bit (1) unal, /* on if to append to listing */ 5 2 long bit (1) unal, /* on if long info required */ 6 2 brief bit (1) unal, /* on if brief info required */ 7 2 validate bit (1) unal, /* on if validation with data model required */ 8 2 rel_sw bit (1) unal, /* on if -relation or -rel_names is specified */ 9 2 file_sw bit (1) unal, /* on if -file or -file_names is specified */ 10 2 pad bit (30) unal; /* reserved */ 11 12 dcl ddf_ptr ptr; 13 14 /* END INCLUDE FILE mrds_dsm_display_flags.incl.pl1 */ 15