diff options
author | Tor Andersson <tor.andersson@artifex.com> | 2018-06-14 14:54:24 +0200 |
---|---|---|
committer | Tor Andersson <tor.andersson@artifex.com> | 2018-06-22 16:23:34 +0200 |
commit | 560705fee2b8a21f5a8f51e3ff344b54911b8697 (patch) | |
tree | 3d55a6b8f830f7fb763fffbea340b00901ef0f22 /include | |
parent | 3a263069d58416c251ef9f6a100a54be1e90dc0b (diff) | |
download | mupdf-560705fee2b8a21f5a8f51e3ff344b54911b8697.tar.xz |
Add pdf_dict_get_name function.
Diffstat (limited to 'include')
-rw-r--r-- | include/mupdf/pdf/object.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/mupdf/pdf/object.h b/include/mupdf/pdf/object.h index 677d79d4..b188e5aa 100644 --- a/include/mupdf/pdf/object.h +++ b/include/mupdf/pdf/object.h @@ -132,6 +132,7 @@ pdf_obj *pdf_dict_put_dict(fz_context *ctx, pdf_obj *dict, pdf_obj *key, int ini int pdf_dict_get_bool(fz_context *ctx, pdf_obj *dict, pdf_obj *key); int pdf_dict_get_int(fz_context *ctx, pdf_obj *dict, pdf_obj *key); float pdf_dict_get_real(fz_context *ctx, pdf_obj *dict, pdf_obj *key); +const char *pdf_dict_get_name(fz_context *ctx, pdf_obj *dict, pdf_obj *key); const char *pdf_dict_get_string(fz_context *ctx, pdf_obj *dict, pdf_obj *key, size_t *sizep); void pdf_array_push_bool(fz_context *ctx, pdf_obj *array, int x); |