1 /* BEGIN INCLUDE FILE ... pvip_subchan_meters.incl.pl1 */
 2 
 3 /* Defines the structure used for meters kept by polled_vip_mpx on behalf of its subchannels */
 4 
 5 /* Written June 1981 by Robert Coren */
 6 
 7 dcl 1 pvip_subchan_meter_struc based aligned,
 8     2 version fixed bin,
 9     2 flags,
10       3 printer bit (1) unaligned,
11       3 pad bit (35) unaligned,
12     2 current_meters like pvip_subchan_meters,
13     2 saved_meters like pvip_subchan_meters;
14 
15 dcl 1 pvip_subchan_meters based aligned,
16     2 printer_naks fixed bin (35),
17     2 discarded_printer_frame fixed bin (35),
18     2 display_pgofs fixed bin (35),
19     2 pgof_limit_reached fixed bin (35);
20 
21 dcl PVIP_SUBCHAN_METERS_VERSION_1 internal static options (constant) init (1);
22 
23 
24 /* END INCLUDE FILE ... pvip_subchan_meters.incl.pl1 */