1 /*
2  *   This file contains model number definitions for the CUPS unified
3  *   PCL driver.
4  *
5  *   Copyright 2007 by Apple Inc.
6  *   Copyright 1997-2005 by Easy Software Products.
7  *
8  *   These coded instructions, statements, and computer programs are the
9  *   property of Apple Inc. and are protected by Federal copyright
10  *   law.  Distribution and use rights are outlined in the file "COPYING"
11  *   which should have been included with this file.
12  */
13 
14 /* General PCL Support */
15 #define PCL_PAPER_SIZE		0x1		/* Use ESC&l#A */
16 #define PCL_INKJET		0x2		/* Use inkjet commands */
17 
18 /* Raster Support */
19 #define PCL_RASTER_END_COLOR	0x100		/* Use ESC*rC */
20 #define PCL_RASTER_CID		0x200		/* Use ESC*v#W */
21 #define PCL_RASTER_CRD		0x400		/* Use ESC*g#W */
22 #define PCL_RASTER_SIMPLE	0x800		/* Use ESC*r#U */
23 #define PCL_RASTER_RGB24	0x1000		/* Use 24-bit RGB mode */
24 
25 /* PJL Support */
26 #define PCL_PJL			0x10000		/* Use PJL Commands */
27 #define PCL_PJL_PAPERWIDTH	0x20000		/* Use PJL PAPERWIDTH/LENGTH */
28 #define PCL_PJL_HPGL2		0x40000		/* Enter HPGL2 */
29 #define PCL_PJL_PCL3GUI		0x80000		/* Enter PCL3GUI */
30 #define PCL_PJL_RESOLUTION	0x100000	/* Use PJL SET RESOLUTION */
31 
32