diff options
author | David O'Neill <dmo@samba.org> | 2000-11-14 15:26:53 +0000 |
---|---|---|
committer | David O'Neill <dmo@samba.org> | 2000-11-14 15:26:53 +0000 |
commit | f9680a444bcba72540ab5e23bb44677ef74a9f13 (patch) | |
tree | cb75757616cb1aa7262c1b3b291094089ea6d75f /source3/include | |
parent | e0bcc7ff5434e9f858acc6a79d1842d86d37d73e (diff) | |
download | samba-f9680a444bcba72540ab5e23bb44677ef74a9f13.tar.gz samba-f9680a444bcba72540ab5e23bb44677ef74a9f13.tar.bz2 samba-f9680a444bcba72540ab5e23bb44677ef74a9f13.zip |
Changes from APPLIANCE_HEAD:
- merged Tim's vlp (virtual lp) test program. Enable it with
-DDEVELOPER or by using ./configure.developer
(source/include/smb.h source/configure.developer
source/printing/lpq_parse.c source/param/loadparm.c
testsuite/printing/.cvsignore testsuite/printing/Makefile.vlp
testsuite/printing/vlp.c)
(This used to be commit fbcf83140da1823e74f63227f0a95d07c6e76764)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/smb.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/source3/include/smb.h b/source3/include/smb.h index 57a62b7f1f..a5ace1eb4d 100644 --- a/source3/include/smb.h +++ b/source3/include/smb.h @@ -1405,7 +1405,12 @@ 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_QNX,PRINT_PLP,PRINT_LPRNG,PRINT_SOFTQ, + PRINT_CUPS,PRINT_LPRNT,PRINT_LPROS2 +#ifdef DEVELOPER +,PRINT_TEST,PRINT_VLP +#endif /* DEVELOPER */ +}; /* Remote architectures we know about. */ enum remote_arch_types {RA_UNKNOWN, RA_WFWG, RA_OS2, RA_WIN95, RA_WINNT, RA_WIN2K, RA_SAMBA}; |