diff options
Diffstat (limited to 'public')
-rw-r--r-- | public/fpdf_edit.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/public/fpdf_edit.h b/public/fpdf_edit.h index 6e4f9a4ae8..f2dad739ca 100644 --- a/public/fpdf_edit.h +++ b/public/fpdf_edit.h @@ -150,8 +150,17 @@ FPDF_EXPORT void FPDF_CALLCONV FPDFPage_InsertObject(FPDF_PAGE page, // page - handle to a page. // // Returns the number of objects in |page|. +// +// DEPRECATED. Please use FPDFPage_CountObjects. FPDF_EXPORT int FPDF_CALLCONV FPDFPage_CountObject(FPDF_PAGE page); +// Get number of page objects inside |page|. +// +// page - handle to a page. +// +// Returns the number of objects in |page|. +FPDF_EXPORT int FPDF_CALLCONV FPDFPage_CountObjects(FPDF_PAGE page); + // Get object in |page| at |index|. // // page - handle to a page. |