summaryrefslogtreecommitdiff
path: root/gs/src/gxcpath.h
diff options
context:
space:
mode:
authorL Peter Deutsch <lpd@ghostscript.com>2002-06-16 08:45:43 +0000
committerL Peter Deutsch <lpd@ghostscript.com>2002-06-16 08:45:43 +0000
commitd48e6465e05c393fe7bd63c072b7f6f507ad91c3 (patch)
treec131da1775ad3087ea0eb1018da9b5d76f1ba095 /gs/src/gxcpath.h
parentef512bbc1dc90e7af63ce03817669169e62117f2 (diff)
Removes all uses of the now-deprecated Pn macros from the remaining
library header files. git-svn-id: http://svn.ghostscript.com/ghostscript/trunk@2748 a1074d23-0009-0410-80fe-cf8c14f379e6
Diffstat (limited to 'gs/src/gxcpath.h')
-rw-r--r--gs/src/gxcpath.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/gs/src/gxcpath.h b/gs/src/gxcpath.h
index 4f4481091..0edf1616c 100644
--- a/gs/src/gxcpath.h
+++ b/gs/src/gxcpath.h
@@ -111,13 +111,13 @@ extern_st(st_device_clip);
gs_public_st_composite_use_final(st_device_clip, gx_device_clip,\
"gx_device_clip", device_clip_enum_ptrs, device_clip_reloc_ptrs,\
gx_device_finalize)
-void gx_make_clip_translate_device(P5(gx_device_clip * dev,
- const gx_clip_list * list,
- int tx, int ty, gs_memory_t *mem));
+void gx_make_clip_translate_device(gx_device_clip * dev,
+ const gx_clip_list * list,
+ int tx, int ty, gs_memory_t *mem);
#define gx_make_clip_device(dev, list)\
gx_make_clip_translate_device(dev, list, 0, 0, NULL)
-void gx_make_clip_path_device(P2(gx_device_clip *, const gx_clip_path *));
+void gx_make_clip_path_device(gx_device_clip *, const gx_clip_path *);
#define clip_rect_print(ch, str, ar)\
if_debug7(ch, "[%c]%s 0x%lx: (%d,%d),(%d,%d)\n", ch, str, (ulong)ar,\
@@ -126,17 +126,17 @@ void gx_make_clip_path_device(P2(gx_device_clip *, const gx_clip_path *));
/* Exported by gxcpath.c for gxacpath.c */
/* Initialize a clip list. */
-void gx_clip_list_init(P1(gx_clip_list *));
+void gx_clip_list_init(gx_clip_list *);
/* Free a clip list. */
-void gx_clip_list_free(P2(gx_clip_list *, gs_memory_t *));
+void gx_clip_list_free(gx_clip_list *, gs_memory_t *);
/* Set the outer box for a clipping path from its bounding box. */
-void gx_cpath_set_outer_box(P1(gx_clip_path *));
+void gx_cpath_set_outer_box(gx_clip_path *);
/* Exported by gxcpath.c for gxclip.c */
/* Return the rectangle list of a clipping path (for local use only). */
-const gx_clip_list *gx_cpath_list(P1(const gx_clip_path *pcpath));
+const gx_clip_list *gx_cpath_list(const gx_clip_path *pcpath);
#endif /* gxcpath_INCLUDED */