summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRobin Watts <robin.watts@artifex.com>2015-12-09 17:51:53 +0000
committerRobin Watts <robin.watts@artifex.com>2015-12-14 16:22:35 +0000
commit3b183d95c919bf56a5ffcecf9717aa5b73db0db6 (patch)
treeb42897f0d2c5cff306be90b2f6f10c31d5bb4bcd /include
parent1180b61fce77e2c06a0be764605f7fde4aad7ae3 (diff)
downloadmupdf-3b183d95c919bf56a5ffcecf9717aa5b73db0db6.tar.xz
Add fz_clone_text
Will be required for JNI bindings.
Diffstat (limited to 'include')
-rw-r--r--include/mupdf/fitz/text.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/mupdf/fitz/text.h b/include/mupdf/fitz/text.h
index 01b4667f..302678cd 100644
--- a/include/mupdf/fitz/text.h
+++ b/include/mupdf/fitz/text.h
@@ -52,4 +52,6 @@ void fz_drop_text(fz_context *ctx, fz_text *text);
void fz_add_text(fz_context *ctx, fz_text *text, fz_font *font, int wmode, const fz_matrix *trm, int gid, int ucs);
fz_rect *fz_bound_text(fz_context *ctx, fz_text *text, const fz_stroke_state *stroke, const fz_matrix *ctm, fz_rect *r);
+fz_text *fz_clone_text(fz_context *ctx, fz_text *text);
+
#endif