John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 1 | // Copyright 2014 PDFium Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 4 | |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 5 | // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
| 6 | |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 7 | #ifndef PUBLIC_FPDF_PPO_H_ |
| 8 | #define PUBLIC_FPDF_PPO_H_ |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 9 | |
Dan Sinclair | 85c8e7f | 2016-11-21 13:50:32 -0500 | [diff] [blame] | 10 | // NOLINTNEXTLINE(build/include) |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 11 | #include "fpdfview.h" |
| 12 | |
Bo Xu | d5e822a | 2014-10-03 13:18:55 -0700 | [diff] [blame] | 13 | #ifdef __cplusplus |
| 14 | extern "C" { |
| 15 | #endif |
| 16 | |
dsinclair | 860193b | 2016-04-25 19:44:20 -0700 | [diff] [blame] | 17 | // Import pages to a FPDF_DOCUMENT. |
| 18 | // |
| 19 | // dest_doc - The destination document for the pages. |
| 20 | // src_doc - The document to be imported. |
| 21 | // pagerange - A page range string, Such as "1,3,5-7". If |pagerange| is NULL, |
| 22 | // all pages from |src_doc| are imported. |
| 23 | // index - The page index to insert at. |
| 24 | // |
| 25 | // Returns TRUE on success. |
Dan Sinclair | 00d2ad1 | 2017-08-10 14:13:02 -0400 | [diff] [blame^] | 26 | FPDF_EXPORT FPDF_BOOL FPDF_CALLCONV FPDF_ImportPages(FPDF_DOCUMENT dest_doc, |
| 27 | FPDF_DOCUMENT src_doc, |
| 28 | FPDF_BYTESTRING pagerange, |
| 29 | int index); |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 30 | |
dsinclair | 860193b | 2016-04-25 19:44:20 -0700 | [diff] [blame] | 31 | // Copy the viewer preferences from |src_doc| into |dest_doc|. |
| 32 | // |
| 33 | // dest_doc - Document to write the viewer preferences into. |
| 34 | // src_doc - Document to read the viewer preferences from. |
| 35 | // |
| 36 | // Returns TRUE on success. |
Dan Sinclair | 00d2ad1 | 2017-08-10 14:13:02 -0400 | [diff] [blame^] | 37 | FPDF_EXPORT FPDF_BOOL FPDF_CALLCONV |
| 38 | FPDF_CopyViewerPreferences(FPDF_DOCUMENT dest_doc, FPDF_DOCUMENT src_doc); |
Bo Xu | d5e822a | 2014-10-03 13:18:55 -0700 | [diff] [blame] | 39 | |
| 40 | #ifdef __cplusplus |
dsinclair | 860193b | 2016-04-25 19:44:20 -0700 | [diff] [blame] | 41 | } // extern "C" |
| 42 | #endif // __cplusplus |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 43 | |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 44 | #endif // PUBLIC_FPDF_PPO_H_ |