diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2018-07-16 19:20:36 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-07-16 19:20:36 +0000 |
commit | 1d273f1cf00676725da6f0cd17e107f114030e87 (patch) | |
tree | 97b2411500872f72d74a4bab7e4c8461e9e28deb /public | |
parent | fb709d88935ae85532679d225993741919b23a7b (diff) | |
download | pdfium-1d273f1cf00676725da6f0cd17e107f114030e87.tar.xz |
Add FPDFFormObj_GetObject() API
To be used together with the existing FPDFFormObj_CountObjects()
function.
Change-Id: I8ed69624e967708c8db7e8f135e28fbe6a52752f
Reviewed-on: https://pdfium-review.googlesource.com/37890
Reviewed-by: Nicolás Peña Moreno <npm@chromium.org>
Reviewed-by: Henrique Nakashima <hnakashima@chromium.org>
Commit-Queue: Nicolás Peña Moreno <npm@chromium.org>
Diffstat (limited to 'public')
-rw-r--r-- | public/fpdf_edit.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/public/fpdf_edit.h b/public/fpdf_edit.h index fdd8c97d05..b97a7adbd9 100644 --- a/public/fpdf_edit.h +++ b/public/fpdf_edit.h @@ -1265,6 +1265,16 @@ FPDF_EXPORT int FPDF_CALLCONV FPDFText_GetTextRenderMode(FPDF_PAGEOBJECT text); FPDF_EXPORT int FPDF_CALLCONV FPDFFormObj_CountObjects(FPDF_PAGEOBJECT form_object); +// Experimental API. +// Get page object in |form_object| at |index|. +// +// form_object - handle to a form object. +// index - the 0-based index of a page object. +// +// Returns the handle to the page object, or NULL on error. +FPDF_EXPORT FPDF_PAGEOBJECT FPDF_CALLCONV +FPDFFormObj_GetObject(FPDF_PAGEOBJECT form_object, unsigned long index); + #ifdef __cplusplus } // extern "C" #endif // __cplusplus |