summaryrefslogtreecommitdiff
path: root/public
diff options
context:
space:
mode:
Diffstat (limited to 'public')
-rw-r--r--public/fpdf_edit.h39
1 files changed, 0 insertions, 39 deletions
diff --git a/public/fpdf_edit.h b/public/fpdf_edit.h
index e6f193a37b..5e3efb5825 100644
--- a/public/fpdf_edit.h
+++ b/public/fpdf_edit.h
@@ -370,17 +370,6 @@ FPDFPageObjMark_GetParamKey(FPDF_PAGEOBJECTMARK mark,
unsigned long buflen);
// Experimental API.
-// Get the type of the value of a property in a content mark.
-//
-// mark - handle to a content mark.
-// index - index of the property.
-//
-// Returns the type of the value, or FPDF_OBJECT_UNKNOWN in case of failure.
-FPDF_EXPORT FPDF_OBJECT_TYPE FPDF_CALLCONV
-FPDFPageObjMark_GetParamValueType(FPDF_PAGEOBJECTMARK mark,
- unsigned long index);
-
-// Experimental API.
// Get the type of the value of a property in a content mark by key.
//
// mark - handle to a content mark.
@@ -392,18 +381,6 @@ FPDFPageObjMark_GetParamValueTypeByKey(FPDF_PAGEOBJECTMARK mark,
FPDF_BYTESTRING key);
// Experimental API.
-// Get the value of a number property in a content mark as int.
-// FPDFPageObjMark_GetParamValueType() should have returned FPDF_OBJECT_NUMBER
-// for this property.
-//
-// mark - handle to a content mark.
-// index - index of the property.
-//
-// Returns the int value, 0 in case of failure.
-FPDF_EXPORT int FPDF_CALLCONV
-FPDFPageObjMark_GetParamIntValue(FPDF_PAGEOBJECTMARK mark, unsigned long index);
-
-// Experimental API.
// Get the value of a number property in a content mark by key as int.
// FPDFPageObjMark_GetParamValueType() should have returned FPDF_OBJECT_NUMBER
// for this property.
@@ -420,22 +397,6 @@ FPDFPageObjMark_GetParamIntValueByKey(FPDF_PAGEOBJECTMARK mark,
int* out_value);
// Experimental API.
-// Get the value of a string property in a content mark.
-// |buffer| is only modified if |buflen| is longer than the length of the value.
-//
-// mark - handle to a content mark.
-// index - index of the property.
-// buffer - buffer for holding the returned value in UTF16-LE.
-// buflen - length of the buffer.
-//
-// Returns the length of the value.
-FPDF_EXPORT unsigned long FPDF_CALLCONV
-FPDFPageObjMark_GetParamStringValue(FPDF_PAGEOBJECTMARK mark,
- unsigned long index,
- void* buffer,
- unsigned long buflen);
-
-// Experimental API.
// Get the value of a string property in a content mark by key.
// |buffer| is only modified if |buflen| is longer than the length of the value.
//