summaryrefslogtreecommitdiff
path: root/pcl/pcdraw.h
diff options
context:
space:
mode:
authorHenry Stiles <henry.stiles@artifex.com>1999-04-08 06:46:44 +0000
committerHenry Stiles <henry.stiles@artifex.com>1999-04-08 06:46:44 +0000
commitb31ea3c32890ba663f63dc895349a8fc6177f3bd (patch)
treed55b54f2fc3f5b3d850675513d0b7d3d61066019 /pcl/pcdraw.h
parentcd33d1d02cb729af7cb63610059c8d2b66fdad3d (diff)
extensive changes to support static removal from the pcl halftone
code. Removes use of extern in prototypes and adds the standard prototype macros for argument templates. Adds support for device resolution patterns. git-svn-id: http://svn.ghostscript.com/ghostpcl/trunk/ghostpcl@805 06663e23-700e-0410-b217-a244a6096597
Diffstat (limited to 'pcl/pcdraw.h')
-rw-r--r--pcl/pcdraw.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/pcl/pcdraw.h b/pcl/pcdraw.h
index 0df4d5b3c..59039b4c4 100644
--- a/pcl/pcdraw.h
+++ b/pcl/pcdraw.h
@@ -10,17 +10,17 @@
#include "pcstate.h"
/* compatibility function */
-extern int pcl_set_ctm( pcl_state_t * pcs, bool print_direction );
+int pcl_set_ctm(P2(pcl_state_t * pcs, bool print_direction));
/* set CTM and clip rectangle for drawing PCL object */
-extern int pcl_set_graphics_state( pcl_state_t * pcs );
+int pcl_set_graphics_state(P1(pcl_state_t * pcs));
/* set the current drawing color */
-extern int pcl_set_drawing_color(
+int pcl_set_drawing_color(P4(
pcl_state_t * pcs,
pcl_pattern_source_t type,
int pcl_id,
bool for_image
-);
+));
#endif /* pcdraw_INCLUDED */