summaryrefslogtreecommitdiff
path: root/gs/src/gscsepr.h
diff options
context:
space:
mode:
authorHenry Stiles <henry.stiles@artifex.com>1998-08-08 06:14:25 +0000
committerHenry Stiles <henry.stiles@artifex.com>1998-08-08 06:14:25 +0000
commita54bb96de84363bd3ffc7696805c268babc95954 (patch)
treeab95f514d2831fa22cecdf942d2530b656a66d9e /gs/src/gscsepr.h
parent3305477b99710b8ce6223a0bdd5014ced4de6997 (diff)
This commit was generated by cvs2svn to compensate for changes in r279,
which included commits to RCS files with non-trunk default branches. git-svn-id: http://svn.ghostscript.com/ghostpcl/trunk/ghostpcl@280 06663e23-700e-0410-b217-a244a6096597
Diffstat (limited to 'gs/src/gscsepr.h')
-rw-r--r--gs/src/gscsepr.h74
1 files changed, 40 insertions, 34 deletions
diff --git a/gs/src/gscsepr.h b/gs/src/gscsepr.h
index 586234ceb..152ce0de7 100644
--- a/gs/src/gscsepr.h
+++ b/gs/src/gscsepr.h
@@ -1,28 +1,32 @@
/* Copyright (C) 1992, 1993, 1997, 1998 Aladdin Enterprises. All rights reserved.
-
- This file is part of Aladdin Ghostscript.
-
- Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND. No author
- or distributor accepts any responsibility for the consequences of using it,
- or for whether it serves any particular purpose or works at all, unless he
- or she says so in writing. Refer to the Aladdin Ghostscript Free Public
- License (the "License") for full details.
-
- Every copy of Aladdin Ghostscript must include a copy of the License,
- normally in a plain ASCII text file named PUBLIC. The License grants you
- the right to copy, modify and redistribute Aladdin Ghostscript, but only
- under certain conditions described in the License. Among other things, the
- License requires that the copyright notice and this notice be preserved on
- all copies.
-*/
-
-/*Id: gscsepr.h */
+
+ This file is part of Aladdin Ghostscript.
+
+ Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND. No author
+ or distributor accepts any responsibility for the consequences of using it,
+ or for whether it serves any particular purpose or works at all, unless he
+ or she says so in writing. Refer to the Aladdin Ghostscript Free Public
+ License (the "License") for full details.
+
+ Every copy of Aladdin Ghostscript must include a copy of the License,
+ normally in a plain ASCII text file named PUBLIC. The License grants you
+ the right to copy, modify and redistribute Aladdin Ghostscript, but only
+ under certain conditions described in the License. Among other things, the
+ License requires that the copyright notice and this notice be preserved on
+ all copies.
+ */
+
+/*Id: gscsepr.h */
/* Client interface to Separation color */
+
+#ifndef gscsepr_INCLUDED
+# define gscsepr_INCLUDED
+
#include "gscspace.h"
/* Graphics state */
-bool gs_currentoverprint(P1(const gs_state *));
-void gs_setoverprint(P2(gs_state *, bool));
+bool gs_currentoverprint(P1(const gs_state *));
+void gs_setoverprint(P2(gs_state *, bool));
/*
* Separation color spaces.
@@ -39,24 +43,26 @@ void gs_setoverprint(P2(gs_state *, bool));
* entries in the cache. If this function is called when the cache size is
* 0, all color components in the alternative color space will be set to 0.
*/
-extern int gs_cspace_build_Separation(
- gs_color_space ** ppcspace,
- gs_separation_name sname,
- const gs_color_space * palt_cspace,
- int cache_size,
- gs_memory_t * pmem
+extern int gs_cspace_build_Separation(
+ gs_color_space ** ppcspace,
+ gs_separation_name sname,
+ const gs_color_space * palt_cspace,
+ int cache_size,
+ gs_memory_t * pmem
);
/* Get the cached value array for a Separation color space. */
extern float *gs_separation_value_array(P1(
- const gs_color_space * pcspace
-));
+ const gs_color_space * pcspace
+ ));
/* Set the tint transformation procedure for a separation color space. */
extern int gs_cspace_set_tint_transform_proc(P2(
- gs_color_space * pcspace,
- int (*proc)(P3( const gs_separation_params *,
- floatp,
- float *
- ))
-));
+ gs_color_space * pcspace,
+ int (*proc) (P3(const gs_separation_params *,
+ floatp,
+ float *
+ ))
+ ));
+
+#endif /* gscsepr_INCLUDED */