1 /* BEGIN INCLUDE FILE ... quota_cell.incl.pl1 ... February 1982 */
 2 
 3 dcl 1 quota_cell based (qcp) aligned,                       /* Argument used by vtoc_attributes$(get set)_quota */
 4     2 quota fixed bin (35),                                 /* Record quota */
 5     2 used fixed bin (35),                                  /* Current use */
 6     2 received fixed bin (35),                              /* Quota moved down */
 7     2 tup bit (36),                                         /* Clock time of update */
 8     2 trp fixed bin (71),                                   /* Time-page-product, in page-seconds */
 9     2 pad fixed bin,
10     2 terminal_quota_sw bit (1);                            /* TRUE if terminal quota */
11 
12 dcl  qcp ptr;
13 
14 /* END INCLUDE FILE ... quota_cell */