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/pgmisc.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/pgmisc.h')
-rw-r--r-- | pcl/pgmisc.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pcl/pgmisc.h b/pcl/pgmisc.h index 436030917..608a8d640 100644 --- a/pcl/pgmisc.h +++ b/pcl/pgmisc.h @@ -8,7 +8,7 @@ #ifndef pgmisc_INCLUDED # define pgmisc_INCLUDED -extern void hpgl_set_lost_mode(P2(hpgl_state_t *pgls, hpgl_lost_mode_t lost_mode)); +void hpgl_set_lost_mode(P2(hpgl_state_t *pgls, hpgl_lost_mode_t lost_mode)); /* get the current setting of the edge pen set by CF, NB this should be in a different header file */ int32 hpgl_get_character_edge_pen(P1(hpgl_state_t *pgls)); @@ -23,8 +23,8 @@ int32 hpgl_get_character_edge_pen(P1(hpgl_state_t *pgls)); #ifdef DEBUG -extern void hpgl_error(P0()); -extern int hpgl_print_error(P4(const char *function, const char *file, int line, int code)); +void hpgl_error(P0()); +int hpgl_print_error(P4(const char *function, const char *file, int line, int code)); # ifdef __GNUC__ # define hpgl_call_note_error(code)\ |