1 /* Copyright (C) 2001-2007 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, modified
8    or distributed except as expressly authorized under the terms of that
9    license.  Refer to licensing information at http://www.artifex.com/
10    or contact Artifex Software, Inc.,  7 Mt. Lassen Drive - Suite A-134,
11    San Rafael, CA  94903, U.S.A., +1(415)492-9861, for further information.
12 */
13 /* $Id: gsncdummy.h 8044 2007-06-12 02:41:44Z giles $ */
14 /* Global definitions for the example custom color callback handling. */
15 
16 #ifndef gsncdummy_INCLUDED
17 #define gsncdummy_INCLUDED
18 
19 #if ENABLE_CUSTOM_COLOR_CALLBACK		/* Defined in src/gsnamecl.h */
20 
21 /*
22  * This s a list of PANTONE color names and a set of equivalent CMYK values,
23  */
24 typedef struct pantone_list_s {
25     const char *name;		/* Name of the PANTONE color */
26     double c, m, y, k;		/* Equivalent CMYK values */
27 } pantone_list_t;
28 
29 
30 #endif		/* if ENABLE_CUSTOM_COLOR_CALLBACK */
31 
32 #endif		/* if gsncdummy_INCLUDED */
33