From c762908074c45baacde1df04b633e01308030864 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Tue, 20 Sep 2005 23:28:22 +0000 Subject: r10371: Adding iPrint printing backend written by Joel J. Smith @ Novell. Jeremy. (This used to be commit 155dc2d52a971bfb8d7565c06f3efc637e130b11) --- source3/include/printing.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'source3/include/printing.h') diff --git a/source3/include/printing.h b/source3/include/printing.h index 43ff8dd39e..220fd08ef1 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) -- cgit