| 744 | */ |
| 745 | |
| 746 | int /* O - Job ID or 0 on error */ |
| 747 | cupsPrintFiles( |
| 748 | const char *name, /* I - Destination name */ |
| 749 | int num_files, /* I - Number of files */ |
| 750 | const char **files, /* I - File(s) to print */ |
| 751 | const char *title, /* I - Title of job */ |
| 752 | int num_options, /* I - Number of options */ |
| 753 | cups_option_t *options) /* I - Options */ |
| 754 | { |
| 755 | DEBUG_printf(("cupsPrintFiles(name=\"%s\", num_files=%d, files=%p, title=\"%s\", num_options=%d, options=%p)", name, num_files, (void *)files, title, num_options, (void *)options)); |
| 756 | |
| 757 | /* |
| 758 | * Print the file(s)... |
| 759 | */ |
| 760 | |
| 761 | return (cupsPrintFiles2(CUPS_HTTP_DEFAULT, name, num_files, files, title, |
| 762 | num_options, options)); |
| 763 | } |
| 764 | |
| 765 | |
| 766 | /* |
no test coverage detected