diff options
Diffstat (limited to 'source3/include/printing.h')
-rw-r--r-- | source3/include/printing.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source3/include/printing.h b/source3/include/printing.h index 43ff8dd39e8..220fd08ef1e 100644 --- a/source3/include/printing.h +++ b/source3/include/printing.h @@ -69,6 +69,10 @@ extern struct printif generic_printif; extern struct printif cups_printif; #endif /* HAVE_CUPS */ +#ifdef HAVE_IPRINT +extern struct printif iprint_printif; +#endif /* HAVE_IPRINT */ + /* PRINT_MAX_JOBID is now defined in local.h */ #define UNIX_JOB_START PRINT_MAX_JOBID #define NEXT_JOBID(j) ((j+1) % PRINT_MAX_JOBID > 0 ? (j+1) % PRINT_MAX_JOBID : 1) |