diff options
author | Henry Stiles <henry.stiles@artifex.com> | 1999-04-08 06:46:44 +0000 |
---|---|---|
committer | Henry Stiles <henry.stiles@artifex.com> | 1999-04-08 06:46:44 +0000 |
commit | b31ea3c32890ba663f63dc895349a8fc6177f3bd (patch) | |
tree | d55b54f2fc3f5b3d850675513d0b7d3d61066019 /pcl/rtraster.h | |
parent | cd33d1d02cb729af7cb63610059c8d2b66fdad3d (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/rtraster.h')
-rw-r--r-- | pcl/rtraster.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pcl/rtraster.h b/pcl/rtraster.h index 9bef6a83d..5abd4f4f6 100644 --- a/pcl/rtraster.h +++ b/pcl/rtraster.h @@ -15,14 +15,14 @@ * * Returns 0 on success, < 0 in the event of an error. */ -extern int pcl_start_raster( +int pcl_start_raster(P3( uint src_width, uint src_height, pcl_state_t * pcs -); +)); /* complete a raster (when exiting raster graphics mode) */ -extern void pcl_complete_raster( void ); +void pcl_complete_raster(void); extern const pcl_init_t rtraster_init; |