/* Copyright (C) 1992, 2000 Aladdin Enterprises. All rights reserved. This software is provided AS-IS with no warranty, either express or implied. This software is distributed under license and may not be copied, modified or distributed except as expressly authorized under the terms of the license contained in the file LICENSE in this distribution. For more information about licensing, please refer to http://www.ghostscript.com/licensing/. For information on commercial licensing, go to http://www.artifex.com/licensing/ or contact Artifex Software, Inc., 101 Lucas Valley Road #110, San Rafael, CA 94903, U.S.A., +1(415)492-9861. */ /* $Id: gdevpccm.h,v 1.8 2004/09/20 22:14:59 dan Exp $ */ /* PC color mapping support */ /* Requires gxdevice.h */ #ifndef gdevpccm_INCLUDED # define gdevpccm_INCLUDED /* Color mapping routines for EGA/VGA-style color. */ dev_proc_map_rgb_color(pc_4bit_map_rgb_color); dev_proc_map_color_rgb(pc_4bit_map_color_rgb); #define dci_pc_4bit dci_values(3, 4, 1, 1, 2, 2) /* Color mapping routines for 8-bit color (with a fixed palette). */ dev_proc_map_rgb_color(pc_8bit_map_rgb_color); dev_proc_map_color_rgb(pc_8bit_map_color_rgb); #define dci_pc_8bit dci_values(3, 8, 5, 5, 6, 6) /* Write the palette on a file. */ int pc_write_palette(gx_device *, uint, FILE *); #endif /* gdevpccm_INCLUDED */