| 493 | */ |
| 494 | |
| 495 | static void |
| 496 | report_levels(ppd_file_t *ppd, /* I - PPD file */ |
| 497 | const char *user) /* I - Printing user */ |
| 498 | { |
| 499 | /* |
| 500 | * Put the printer in PostScript mode... |
| 501 | */ |
| 502 | |
| 503 | begin_ps(ppd, user); |
| 504 | |
| 505 | /* |
| 506 | * Don't bother sending any additional PostScript commands, since we just |
| 507 | * want the backend to have enough time to collect the supply info. |
| 508 | */ |
| 509 | |
| 510 | /* |
| 511 | * Finish the job... |
| 512 | */ |
| 513 | |
| 514 | end_ps(ppd); |
| 515 | } |