1 /* BEGIN INCLUDE FILE ... tq_info.incl.pl1 */
 2 /* created by J. A. Bush 10/03/79 */
 3 
 4 dcl  tq_infop ptr;                                          /* ptr to structure below */
 5 
 6 dcl 1 tq_info based (tq_infop) aligned,                     /* structure defining terminal quota attributes */
 7     2 trp (0:1) fixed bin (71),                             /* time record product (0 is seg quota) */
 8     2 tup (0:1) bit (36),                                   /* clock time of update */
 9     2 received (0:1) fixed bin (35),                        /* quota moved down */
10     2 pad (0:1) fixed bin;                                  /* inferier quota count */
11 
12 /* END INCLUDE FILE ... tq_info.incl.pl1 */