summaryrefslogtreecommitdiff
path: root/include/mupdf/pdf/interpret.h
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2016-07-08 12:04:35 +0200
committerTor Andersson <tor.andersson@artifex.com>2016-07-08 17:21:24 +0200
commit10d6eaa73164b58c91ae8a4537b8a8589038a01d (patch)
tree5b739b0c2202b42a9079ee3ecbd98c3d3b09b124 /include/mupdf/pdf/interpret.h
parentb53e7a42f7cc9756ed9fa1fed313271e3ae67855 (diff)
downloadmupdf-10d6eaa73164b58c91ae8a4537b8a8589038a01d.tar.xz
Separate close and drop functionality for devices and writers.
Closing a device or writer may throw exceptions, but much of the foreign language bindings (JNI and JS) depend on drop to never throw an exception (exceptions in finalizers are bad).
Diffstat (limited to 'include/mupdf/pdf/interpret.h')
-rw-r--r--include/mupdf/pdf/interpret.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/mupdf/pdf/interpret.h b/include/mupdf/pdf/interpret.h
index da89e573..07460221 100644
--- a/include/mupdf/pdf/interpret.h
+++ b/include/mupdf/pdf/interpret.h
@@ -6,11 +6,13 @@ typedef struct pdf_gstate_s pdf_gstate;
typedef struct pdf_processor_s pdf_processor;
void *pdf_new_processor(fz_context *ctx, int size);
+void pdf_close_processor(fz_context *ctx, pdf_processor *proc);
void pdf_drop_processor(fz_context *ctx, pdf_processor *proc);
struct pdf_processor_s
{
- void (*drop_imp)(fz_context *ctx, pdf_processor *proc);
+ void (*close_processor)(fz_context *ctx, pdf_processor *proc);
+ void (*drop_processor)(fz_context *ctx, pdf_processor *proc);
/* general graphics state */
void (*op_w)(fz_context *ctx, pdf_processor *proc, float linewidth);