MCPcopy Create free account
hub / github.com/OpenPrinting/cups / cupsPrintFiles

Function cupsPrintFiles

cups/util.c:746–763  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

744 */
745
746int /* O - Job ID or 0 on error */
747cupsPrintFiles(
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/*

Callers 2

mainFunction · 0.85
mainFunction · 0.85

Calls 1

cupsPrintFiles2Function · 0.85

Tested by

no test coverage detected