diff options
author | L Peter Deutsch <lpd@ghostscript.com> | 2002-06-16 07:25:26 +0000 |
---|---|---|
committer | L Peter Deutsch <lpd@ghostscript.com> | 2002-06-16 07:25:26 +0000 |
commit | ef512bbc1dc90e7af63ce03817669169e62117f2 (patch) | |
tree | 78be3df6a811047b82b3ea181e99581933ad74c2 /gs/src/gdevpsu.h | |
parent | dc9f848195a0729cff1be9068bcc2863de22e821 (diff) |
Removes all uses of the now-deprecated Pn macros from driver-related headers
(gdev*.h).
git-svn-id: http://svn.ghostscript.com/ghostscript/trunk@2747 a1074d23-0009-0410-80fe-cf8c14f379e6
Diffstat (limited to 'gs/src/gdevpsu.h')
-rw-r--r-- | gs/src/gdevpsu.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/gs/src/gdevpsu.h b/gs/src/gdevpsu.h index 730ddfa52..145da3a22 100644 --- a/gs/src/gdevpsu.h +++ b/gs/src/gdevpsu.h @@ -34,7 +34,7 @@ typedef struct gx_device_pswrite_common_s { /* ---------------- Low level ---------------- */ /* Write a 0-terminated array of strings as lines. */ -void psw_print_lines(P2(FILE *f, const char *const lines[])); +void psw_print_lines(FILE *f, const char *const lines[]); /* ---------------- File level ---------------- */ @@ -42,31 +42,31 @@ void psw_print_lines(P2(FILE *f, const char *const lines[])); * Write the file header, up through the BeginProlog. This must write to a * file, not a stream, because it may be called during finalization. */ -void psw_begin_file_header(P5(FILE *f, const gx_device *dev, - const gs_rect *pbbox, - gx_device_pswrite_common_t *pdpc, bool ascii)); +void psw_begin_file_header(FILE *f, const gx_device *dev, + const gs_rect *pbbox, + gx_device_pswrite_common_t *pdpc, bool ascii); /* End the file header.*/ -void psw_end_file_header(P1(FILE *f)); +void psw_end_file_header(FILE *f); /* End the file. */ -void psw_end_file(P5(FILE *f, const gx_device *dev, - const gx_device_pswrite_common_t *pdpc, - const gs_rect *pbbox, int page_count)); +void psw_end_file(FILE *f, const gx_device *dev, + const gx_device_pswrite_common_t *pdpc, + const gs_rect *pbbox, int page_count); /* ---------------- Page level ---------------- */ /* * Write the page header. */ -void psw_write_page_header(P5(stream *s, const gx_device *dev, - const gx_device_pswrite_common_t *pdpc, - bool do_scale, long page_ord)); +void psw_write_page_header(stream *s, const gx_device *dev, + const gx_device_pswrite_common_t *pdpc, + bool do_scale, long page_ord); /* * Write the page trailer. We do this directly to the file, rather than to * the stream, because we may have to do it during finalization. */ -void psw_write_page_trailer(P3(FILE *f, int num_copies, int flush)); +void psw_write_page_trailer(FILE *f, int num_copies, int flush); #endif /* gdevpsu_INCLUDED */ |