386BSD 0.1 development
[unix-history] / usr / othersrc / public / ghostscript-2.4.1 / gdevpcl.h
CommitLineData
d1d92669
WJ
1/* Copyright (C) 1992 Aladdin Enterprises. All rights reserved.
2 Distributed by Free Software Foundation, Inc.
3
4This file is part of Ghostscript.
5
6Ghostscript is distributed in the hope that it will be useful, but
7WITHOUT ANY WARRANTY. No author or distributor accepts responsibility
8to anyone for the consequences of using it or for whether it serves any
9particular purpose or works at all, unless he says so in writing. Refer
10to the Ghostscript General Public License for full details.
11
12Everyone is granted permission to copy, modify and redistribute
13Ghostscript, but only under the conditions described in the Ghostscript
14General Public License. A copy of this license is supposed to have been
15given to you along with Ghostscript so you can know your rights and
16responsibilities. It should be in a file named COPYING. Among other
17things, the copyright notice and this notice must be preserved on all
18copies. */
19
20/* gdevpcl.h */
21/* Interface to PCL utilities for Ghostscript printer drivers */
22/* Requires gdevprn.h */
23
24/* Color mapping procedures for 3-bit-per-pixel RGB printers */
25extern dev_proc_map_rgb_color(gdev_pcl_3bit_map_rgb_color);
26extern dev_proc_map_color_rgb(gdev_pcl_3bit_map_color_rgb);
27
28/* Row compression routines */
29typedef ulong word;
30extern int gdev_pcl_mode2compress(P3(const word *row, const word *end_row, char *compressed));
31extern int gdev_pcl_mode3compress(P4(int bytecount, const char *current, char *previous, char *compressed));