diff options
author | Ralf Sippl <ralf.sippl@gmail.com> | 2018-03-26 18:38:20 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-03-26 18:38:20 +0000 |
commit | ca28cb636331de447125de476decbec333fe613b (patch) | |
tree | b532813458060d0700e76ea53e940d1587e2a6bb /public/fpdf_annot.h | |
parent | 3ae75c2f2e5759fcf8218e59fa380c26b98aa6b6 (diff) | |
download | pdfium-ca28cb636331de447125de476decbec333fe613b.tar.xz |
Add FPDFAnnot_CountAttachmentPoints
This CL adds a function to the API that returns the number of quadpoint
sets.
Change-Id: I999bc567a4c98f6c32e87810e7ecfbb634c7b677
Reviewed-on: https://pdfium-review.googlesource.com/29130
Reviewed-by: Lei Zhang <thestig@chromium.org>
Commit-Queue: Lei Zhang <thestig@chromium.org>
Diffstat (limited to 'public/fpdf_annot.h')
-rw-r--r-- | public/fpdf_annot.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/public/fpdf_annot.h b/public/fpdf_annot.h index f4dc03a2c4..a84c4f982a 100644 --- a/public/fpdf_annot.h +++ b/public/fpdf_annot.h @@ -5,6 +5,8 @@ #ifndef PUBLIC_FPDF_ANNOT_H_ #define PUBLIC_FPDF_ANNOT_H_ +#include <stddef.h> + // NOLINTNEXTLINE(build/include) #include "fpdfview.h" @@ -311,6 +313,15 @@ FPDFAnnot_SetAttachmentPoints(FPDF_ANNOTATION annot, const FS_QUADPOINTSF* quad_points); // Experimental API. +// Get the number of sets of quadpoints of an annotation. +// +// annot - handle to an annotation. +// +// Returns the number of sets of quadpoints, or 0 on failure. +FPDF_EXPORT size_t FPDF_CALLCONV +FPDFAnnot_CountAttachmentPoints(FPDF_ANNOTATION annot); + +// Experimental API. // Get the attachment points (i.e. quadpoints) of an annotation. // // annot - handle to an annotation. |