pdfPrintFile

Prints a named PDF file.
int pdfPrintFile(char *pdfFileName, BOOL silent)
This function loads and prints a PDF file, without using a viewer object. If the silent argument is true, the file is printed to the default printer with no user interaction. If silent is false, the standard Windows printing dialog is displayed, allowing the user to select a printer, etc.

pdfPrintFile returns pdfOk if printing was successful, otherwise an error code.

C:
pdfPrintFile("c:\\test\\file.pdf", FALSE);
pdfPrint
pdfPrint3