summaryrefslogtreecommitdiff
path: root/source3/include
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2005-09-20 23:28:22 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 11:03:41 -0500
commitc762908074c45baacde1df04b633e01308030864 (patch)
tree2d564b844bc03e8bba9ba00f61f426ccc4fd8b53 /source3/include
parent1970294ab3df66d36b713dc8811527ddc8e99bd0 (diff)
downloadsamba-c762908074c45baacde1df04b633e01308030864.tar.gz
samba-c762908074c45baacde1df04b633e01308030864.tar.bz2
samba-c762908074c45baacde1df04b633e01308030864.zip
r10371: Adding iPrint printing backend written by Joel J. Smith @ Novell.
Jeremy. (This used to be commit 155dc2d52a971bfb8d7565c06f3efc637e130b11)
Diffstat (limited to 'source3/include')
-rw-r--r--source3/include/printing.h4
-rw-r--r--source3/include/smb.h2
2 files changed, 5 insertions, 1 deletions
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)
diff --git a/source3/include/smb.h b/source3/include/smb.h
index d3374ccafc..c0778383c6 100644
--- a/source3/include/smb.h
+++ b/source3/include/smb.h
@@ -1390,7 +1390,7 @@ enum server_types
/* printing types */
enum printing_types {PRINT_BSD,PRINT_SYSV,PRINT_AIX,PRINT_HPUX,
PRINT_QNX,PRINT_PLP,PRINT_LPRNG,PRINT_SOFTQ,
- PRINT_CUPS,PRINT_LPRNT,PRINT_LPROS2
+ PRINT_CUPS,PRINT_LPRNT,PRINT_LPROS2,PRINT_IPRINT
#ifdef DEVELOPER
,PRINT_TEST,PRINT_VLP
#endif /* DEVELOPER */