1 /* Copyright (C) 2001-2019 Artifex Software, Inc.
2    All Rights Reserved.
3 
4    This software is provided AS-IS with no warranty, either express or
5    implied.
6 
7    This software is distributed under license and may not be copied,
8    modified or distributed except as expressly authorized under the terms
9    of the license contained in the file LICENSE in this distribution.
10 
11    Refer to licensing information at http://www.artifex.com or contact
12    Artifex Software, Inc.,  1305 Grant Avenue - Suite 200, Novato,
13    CA 94945, U.S.A., +1(415)492-9861, for further information.
14 */
15 
16 
17 /* Common definitions for PCL monochrome palette device */
18 
19 #ifndef gdevmplt_INCLUDED
20 #  define gdevmplt_INCLUDED
21 
22 #include "gxdevice.h"
23 
24 typedef struct gx_device_s gx_device_mplt;
25 
26 /* Initialize device. */
27 void gx_device_pcl_mono_palette_init(gx_device_mplt * dev);
28 
29 typedef struct {
30     subclass_common;
31     gx_cm_color_map_procs pcl_mono_procs;
32     gx_cm_color_map_procs *device_cm_procs;
33 } pcl_mono_palette_subclass_data;
34 
35 extern_st(st_device_mplt);
36 
37 #endif /* gdevmplt_INCLUDED */
38