From 143ace7d86324a2f7bf6e3f42b503b3274c8784a Mon Sep 17 00:00:00 2001 From: Robin Watts Date: Mon, 14 Dec 2015 14:44:06 +0000 Subject: Add user context field. This may help the MuPDF JNI code, so it's likely to be useful for other users too. --- include/mupdf/fitz/context.h | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'include') diff --git a/include/mupdf/fitz/context.h b/include/mupdf/fitz/context.h index 67b16b00..0dce749c 100644 --- a/include/mupdf/fitz/context.h +++ b/include/mupdf/fitz/context.h @@ -101,6 +101,7 @@ void fz_flush_warnings(fz_context *ctx); struct fz_context_s { + void *user; fz_alloc_context *alloc; fz_locks_context *locks; fz_id_context *id; @@ -189,6 +190,24 @@ fz_context *fz_clone_context(fz_context *ctx); */ void fz_drop_context(fz_context *ctx); +/* + fz_set_user_context: Set the user field in the context. + + NULL initially, this field can be set to any opaque value + required by the user. It is copied on clones. + + Does not throw exceptions. +*/ +void fz_set_user_context(fz_context *ctx, void *user); + +/* + fz_user_context: Read the user field from the context. + + Does not throw exceptions. +*/ +void *fz_user_context(fz_context *ctx); + + /* fz_aa_level: Get the number of bits of antialiasing we are using. Between 0 and 8. -- cgit v1.2.3