aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorm-holger <m-holger@kubitscheck.org>2022-02-04 18:15:34 +0100
committerJay Berkenbilt <jberkenbilt@users.noreply.github.com>2022-02-04 19:10:51 +0100
commit95e7d36b7a9d2c241cfb9e67745c653343bb73c3 (patch)
tree090a2f53b61a1d4d8b3ee0b9e60a31f0f5d923bb /include
parent3c138be0efa2daf1e5e162edf1100cf5e8b5521c (diff)
downloadqpdf-95e7d36b7a9d2c241cfb9e67745c653343bb73c3.tar.zst
C-API add two binary UTF8 funtions
add qpdf_oh_new_binary_unicode_string and qpdf_oh_get_binary_utf8_value
Diffstat (limited to 'include')
-rw-r--r--include/qpdf/qpdf-c.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/qpdf/qpdf-c.h b/include/qpdf/qpdf-c.h
index b62f2e09..bd2fb0d5 100644
--- a/include/qpdf/qpdf-c.h
+++ b/include/qpdf/qpdf-c.h
@@ -742,6 +742,9 @@ extern "C" {
QPDF_DLL
char const* qpdf_oh_get_binary_string_value(
qpdf_data qpdf, qpdf_oh oh, size_t* length);
+ QPDF_DLL
+ char const* qpdf_oh_get_binary_utf8_value(
+ qpdf_data qpdf, qpdf_oh oh, size_t* length);
QPDF_DLL
int qpdf_oh_get_array_n_items(qpdf_data qpdf, qpdf_oh oh);
@@ -800,6 +803,9 @@ extern "C" {
QPDF_DLL
qpdf_oh qpdf_oh_new_binary_string(
qpdf_data qpdf, char const* str, size_t length);
+ QPDF_DLL
+ qpdf_oh qpdf_oh_new_binary_unicode_string(
+ qpdf_data qpdf, char const* str, size_t length);
QPDF_DLL
qpdf_oh qpdf_oh_new_array(qpdf_data qpdf);
QPDF_DLL