diff options
author | Lei Zhang <thestig@chromium.org> | 2018-05-08 19:20:57 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-05-08 19:20:57 +0000 |
commit | 9c6204fc6c23ab35ec234781df182da570f6faef (patch) | |
tree | 14170cb0685189648b99d6ca786029382d3384f9 /fpdfsdk/fpdf_view_c_api_test.c | |
parent | 5de481e71bcde25d31452b23a017bb783163a204 (diff) | |
download | pdfium-9c6204fc6c23ab35ec234781df182da570f6faef.tar.xz |
Add APIs to work with a FPDF_PAGERANGE.
After getting a FPDF_PAGERANGE from FPDF_VIEWERREF_GetPrintPageRange(),
one can now use FPDF_VIEWERREF_GetPrintPageRangeCount() to get the
number of elements in the FPDF_PAGERANGE. One can then use
FPDF_VIEWERREF_GetPrintPageRangeElement() to read the elements.
Change-Id: I33eeff9026d01991ae1424e05b67f163245a35f9
Reviewed-on: https://pdfium-review.googlesource.com/32173
Commit-Queue: Lei Zhang <thestig@chromium.org>
Reviewed-by: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'fpdfsdk/fpdf_view_c_api_test.c')
-rw-r--r-- | fpdfsdk/fpdf_view_c_api_test.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fpdfsdk/fpdf_view_c_api_test.c b/fpdfsdk/fpdf_view_c_api_test.c index 792acbe439..782d35d702 100644 --- a/fpdfsdk/fpdf_view_c_api_test.c +++ b/fpdfsdk/fpdf_view_c_api_test.c @@ -363,6 +363,8 @@ int CheckPDFiumCApi() { CHK(FPDF_VIEWERREF_GetPrintScaling); CHK(FPDF_VIEWERREF_GetNumCopies); CHK(FPDF_VIEWERREF_GetPrintPageRange); + CHK(FPDF_VIEWERREF_GetPrintPageRangeCount); + CHK(FPDF_VIEWERREF_GetPrintPageRangeElement); CHK(FPDF_VIEWERREF_GetDuplex); CHK(FPDF_VIEWERREF_GetName); CHK(FPDF_CountNamedDests); |