| 700 | */ |
| 701 | |
| 702 | int /* O - Job ID or 0 on error */ |
| 703 | cupsPrintFile(const char *name, /* I - Destination name */ |
| 704 | const char *filename, /* I - File to print */ |
| 705 | const char *title, /* I - Title of job */ |
| 706 | int num_options,/* I - Number of options */ |
| 707 | cups_option_t *options) /* I - Options */ |
| 708 | { |
| 709 | DEBUG_printf(("cupsPrintFile(name=\"%s\", filename=\"%s\", title=\"%s\", num_options=%d, options=%p)", name, filename, title, num_options, (void *)options)); |
| 710 | |
| 711 | return (cupsPrintFiles2(CUPS_HTTP_DEFAULT, name, 1, &filename, title, |
| 712 | num_options, options)); |
| 713 | } |
| 714 | |
| 715 | |
| 716 | /* |