1 /*  Begin include file  ...  pps_paper_info.incl.pl1  */
 2 
 3 
 4 dcl  ppspip ptr;                                            /*  Pointer to paper info structure.  */
 5 
 6 dcl 1 pps_paper_info aligned based (ppspip),
 7     2 sheet_width fixed dec (5, 1),                         /* Width of the page in inches. */
 8     2 sheet_length fixed dec (5, 1),                        /* Length of the page in inches. */
 9     2 lines_per_inch fixed dec (5, 1),                      /* Number of print lines per inch. */
10     2 chars_per_inch fixed dec (5, 1);                      /* Number of printed characters per inch. */
11 
12 
13 /*  End include file  ...  pps_paper_info.incl.pl1  */