Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(298)

Side by Side Diff: fpdfsdk/include/fpdfppo.h

Issue 1136703003: Merge to XFA: Create top-level public/ header directory. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@xfa
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « fpdfsdk/include/fpdfformfill.h ('k') | fpdfsdk/include/fpdfsave.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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.
4
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6
7 #ifndef _FPDFPPO_H_
8 #define _FPDFPPO_H_
9
10 #include "fpdfview.h"
11
12 #ifdef __cplusplus
13 extern "C" {
14 #endif
15
16 // Function: FPDF_ImportPages
17 // Import some pages to a PDF document.
18 // Parameters:
19 // dest_doc - The destination document which a dd the pages.
20 // src_doc - A document to be imported.
21 // pagerange - A page range string, Such as "1, 3,5-7".
22 // If this parameter is NUL L, it would import all pages in src_doc.
23 // index - The page index wanted to insert from.
24 // Return value:
25 // TRUE for succeed, FALSE for Failed.
26 // Notes:
27 // The method not support this feature for the document con sists of dynamic XFA fields.
28 //
29 DLLEXPORT FPDF_BOOL STDCALL FPDF_ImportPages(FPDF_DOCUMENT dest_doc,FPDF_DOCUMEN T src_doc, FPDF_BYTESTRING pagerange, int index);
30
31
32 // Function: FPDF_CopyViewerPreferences
33 // Copy the viewer preferences from one PDF document to ano ther.#endif
34 // Parameters:
35 // dest_doc - Handle to document to write the viewer preferences to.
36 // src_doc - Handle to document with the view er preferences.
37 // Return value:
38 // TRUE for success, FALSE for failure.
39 DLLEXPORT FPDF_BOOL STDCALL FPDF_CopyViewerPreferences(FPDF_DOCUMENT dest_doc, F PDF_DOCUMENT src_doc);
40
41 #ifdef __cplusplus
42 };
43 #endif
44
45 #endif //_FPDFPPO_H_
46
OLDNEW
« no previous file with comments | « fpdfsdk/include/fpdfformfill.h ('k') | fpdfsdk/include/fpdfsave.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698