r25068: Older samba3 DCs will return DCERPC_FAULT_OP_RNG_ERROR for every opcode on the
[Samba.git] / source / lib / replace / system / printing.h
blob3054811453a80707d3b092f38656b28d3420d0e1
1 #ifndef _system_printing_h
2 #define _system_printing_h
4 /*
5 Unix SMB/CIFS implementation.
7 printing system include wrappers
9 Copyright (C) Andrew Tridgell 2004
11 ** NOTE! The following LGPL license applies to the replace
12 ** library. This does NOT imply that all of Samba is released
13 ** under the LGPL
15 This library is free software; you can redistribute it and/or
16 modify it under the terms of the GNU Lesser General Public
17 License as published by the Free Software Foundation; either
18 version 2 of the License, or (at your option) any later version.
20 This library is distributed in the hope that it will be useful,
21 but WITHOUT ANY WARRANTY; without even the implied warranty of
22 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
23 Lesser General Public License for more details.
25 You should have received a copy of the GNU Lesser General Public
26 License along with this library; if not, write to the Free Software
27 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
31 #ifdef AIX
32 #define DEFAULT_PRINTING PRINT_AIX
33 #define PRINTCAP_NAME "/etc/qconfig"
34 #endif
36 #ifdef HPUX
37 #define DEFAULT_PRINTING PRINT_HPUX
38 #endif
40 #ifdef QNX
41 #define DEFAULT_PRINTING PRINT_QNX
42 #endif
44 #ifndef DEFAULT_PRINTING
45 #define DEFAULT_PRINTING PRINT_BSD
46 #endif
47 #ifndef PRINTCAP_NAME
48 #define PRINTCAP_NAME "/etc/printcap"
49 #endif
51 #endif