summaryrefslogtreecommitdiff
path: root/pcl/pl/pltop.c
diff options
context:
space:
mode:
authorHenry Stiles <henry.stiles@artifex.com>2016-12-14 13:01:07 -0700
committerHenry Stiles <henry.stiles@artifex.com>2017-05-19 12:52:20 -0600
commite9ff0dcf1892086276872e868a254d012ab48702 (patch)
tree70b2d64e46dde7d8ac72fe5d7de6285054857eb2 /pcl/pl/pltop.c
parent97f9904dc5d8f45cbca93b02098eac077bca7f5c (diff)
downloadghostpdl-e9ff0dcf1892086276872e868a254d012ab48702.tar.gz
PL API: continue previous commit, purge pre and post page closures.
Diffstat (limited to 'pcl/pl/pltop.c')
-rw-r--r--pcl/pl/pltop.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/pcl/pl/pltop.c b/pcl/pl/pltop.c
index dc844f0a5..629428292 100644
--- a/pcl/pl/pltop.c
+++ b/pcl/pl/pltop.c
@@ -69,28 +69,6 @@ pl_allocate_interp_instance(pl_interp_instance_t ** instance, /* RETURNS insta
return code;
}
-/* Set an interpreter instance's pre-page action */
-int /* ret 0 ok, else -ve err */
-pl_set_pre_page_action(pl_interp_instance_t * instance, /* interp instance to use */
- pl_page_action_t action, /* action to execute (rets 1 to abort w/o err) */
- void *closure /* closure to call action with */
- )
-{
- return instance->interp->implementation->proc_set_pre_page_action
- (instance, action, closure);
-}
-
-/* Set an interpreter instance's post-page action */
-int /* ret 0 ok, else -ve err */
-pl_set_post_page_action(pl_interp_instance_t * instance, /* interp instance to use */
- pl_page_action_t action, /* action to execute */
- void *closure /* closure to call action with */
- )
-{
- return instance->interp->implementation->proc_set_post_page_action
- (instance, action, closure);
-}
-
/* Get and interpreter prefered device memory allocator if any */
int /* ret 0 ok, else -ve error code */
pl_set_device(pl_interp_instance_t * instance, /* interp instance to use */