1 /* BEGIN INCLUDE FILE...chan_star_info.incl.pl1 */ 2 3 /* Include file to define structure used by metering_ring_zero_peek_$comm_chan_star_list */ 4 5 /* Created February 1981 by Robert Coren */ 6 7 dcl chan_star_list_ptr pointer; 8 dcl chan_star_count fixed bin; 9 10 dcl CHAN_STAR_INFO_VERSION_1 fixed bin int static options (constant) init (1); 11 12 dcl 1 chan_star_info based (chan_star_list_ptr) aligned, 13 2 version fixed bin, 14 2 n_channels fixed bin, 15 2 chan_entry (chan_star_count refer (chan_star_info.n_channels)), /* one for each matching name */ 16 3 name char (32), /* name of channel */ 17 3 mpx_type fixed bin, /* type of this channel */ 18 3 parent_type fixed bin, /* type of immediately superior multiplexer (-1 if level 1 channel) */ 19 3 line_type fixed bin; /* line type of this channel */ 20 21 22 /* END INCLUDE FILE...chan_star_info.incl.pl1 */