1 | /* $Xorg: PclDef.h,v 1.3 2000/08/17 19:48:08 cpqbld Exp $ */
|
---|
2 | /*******************************************************************
|
---|
3 | **
|
---|
4 | ** *********************************************************
|
---|
5 | ** *
|
---|
6 | ** * File: PclDef.h
|
---|
7 | ** *
|
---|
8 | ** * Contents: extran defines and includes for the Pcl driver
|
---|
9 | ** * for a printing X server.
|
---|
10 | ** *
|
---|
11 | ** * Created: 7/31/95
|
---|
12 | ** *
|
---|
13 | ** *********************************************************
|
---|
14 | **
|
---|
15 | ********************************************************************/
|
---|
16 | /*
|
---|
17 | (c) Copyright 1996 Hewlett-Packard Company
|
---|
18 | (c) Copyright 1996 International Business Machines Corp.
|
---|
19 | (c) Copyright 1996 Sun Microsystems, Inc.
|
---|
20 | (c) Copyright 1996 Novell, Inc.
|
---|
21 | (c) Copyright 1996 Digital Equipment Corp.
|
---|
22 | (c) Copyright 1996 Fujitsu Limited
|
---|
23 | (c) Copyright 1996 Hitachi, Ltd.
|
---|
24 |
|
---|
25 | Permission is hereby granted, free of charge, to any person obtaining a copy
|
---|
26 | of this software and associated documentation files (the "Software"), to deal
|
---|
27 | in the Software without restriction, including without limitation the rights
|
---|
28 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
---|
29 | copies of the Software, and to permit persons to whom the Software is
|
---|
30 | furnished to do so, subject to the following conditions:
|
---|
31 |
|
---|
32 | The above copyright notice and this permission notice shall be included in
|
---|
33 | all copies or substantial portions of the Software.
|
---|
34 |
|
---|
35 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
---|
36 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
---|
37 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
---|
38 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
---|
39 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
---|
40 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
---|
41 |
|
---|
42 | Except as contained in this notice, the names of the copyright holders shall
|
---|
43 | not be used in advertising or otherwise to promote the sale, use or other
|
---|
44 | dealings in this Software without prior written authorization from said
|
---|
45 | copyright holders.
|
---|
46 | */
|
---|
47 |
|
---|
48 | #ifdef HAVE_DIX_CONFIG_H
|
---|
49 | #include <dix-config.h>
|
---|
50 | #endif
|
---|
51 |
|
---|
52 | #ifndef _PCLDEF_H_
|
---|
53 | #define _PCLDEF_H_
|
---|
54 |
|
---|
55 | #define DT_PRINT_JOB_HEADER "DT_PRINT_JOB_HEADER"
|
---|
56 | #define DT_PRINT_JOB_TRAILER "DT_PRINT_JOB_TRAILER"
|
---|
57 | #define DT_PRINT_JOB_COMMAND "DT_PRINT_JOB_COMMAND"
|
---|
58 | #define DT_PRINT_JOB_EXEC_COMMAND "DT_PRINT_JOB_EXEC_COMMAND"
|
---|
59 | #define DT_PRINT_JOB_EXEC_OPTIONS "DT_PRINT_JOB_EXEC_OPTION"
|
---|
60 | #define DT_PRINT_PAGE_HEADER "DT_PRINT_PAGE_HEADER"
|
---|
61 | #define DT_PRINT_PAGE_TRAILER "DT_PRINT_PAGE_TRAILER"
|
---|
62 | #define DT_PRINT_PAGE_COMMAND "DT_PRINT_PAGE_COMMAND"
|
---|
63 |
|
---|
64 | #define DT_IN_FILE_STRING "%(InFile)%"
|
---|
65 | #define DT_OUT_FILE_STRING "%(OutFile)%"
|
---|
66 | #define DT_ALLOWED_COMMANDS_FILE "printCommands"
|
---|
67 |
|
---|
68 | #endif /* _PCLDEF_H_ */
|
---|