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

Side by Side Diff: public/fpdf_ext.h

Issue 1137233002: Merge to XFA: Make (and verify) public/ files compile under C. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@xfa
Patch Set: Test new XFA APIs. 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 | « public/fpdf_dataavail.h ('k') | public/fpdf_formfill.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 PDFium Authors. All rights reserved. 1 // Copyright 2014 PDFium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6 6
7 #ifndef _FPDF_EXT_H_ 7 #ifndef _FPDF_EXT_H_
8 #define _FPDF_EXT_H_ 8 #define _FPDF_EXT_H_
9 9
10 #ifndef _FPDFVIEW_H_ 10 #ifndef _FPDFVIEW_H_
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 * 1 46 * 1
47 * Implementation Required: 47 * Implementation Required:
48 * Yes 48 * Yes
49 * Parameters: 49 * Parameters:
50 * pThis - Pointer to the interface structu re itself. 50 * pThis - Pointer to the interface structu re itself.
51 * nType - The type of unsupportObject 51 * nType - The type of unsupportObject
52 * Return value: 52 * Return value:
53 * None. 53 * None.
54 * */ 54 * */
55 55
56 » void(*FSDK_UnSupport_Handler)(_UNSUPPORT_INFO* pThis,int nType); 56 » void(*FSDK_UnSupport_Handler)(struct _UNSUPPORT_INFO* pThis, int nType);
57 }UNSUPPORT_INFO; 57 } UNSUPPORT_INFO;
58 58
59 59
60 /** 60 /**
61 * Function: FSDK_SetUnSpObjProcessHandler 61 * Function: FSDK_SetUnSpObjProcessHandler
62 * Setup A UnSupport Object process handler for foxit sdk. 62 * Setup A UnSupport Object process handler for foxit sdk.
63 * Parameters: 63 * Parameters:
64 * unsp_info - Pointer to a UNSUPPORT_I NFO structure. 64 * unsp_info - Pointer to a UNSUPPORT_I NFO structure.
65 * Return Value: 65 * Return Value:
66 * TRUE means successful. FALSE means fails. 66 * TRUE means successful. FALSE means fails.
67 **/ 67 **/
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 * doc - Handle to document. Returned by FPDF_LoadDocument function. 99 * doc - Handle to document. Returned by FPDF_LoadDocument function.
100 * Return Value: 100 * Return Value:
101 * The flags for page mode. 101 * The flags for page mode.
102 **/ 102 **/
103 DLLEXPORT int FPDFDoc_GetPageMode(FPDF_DOCUMENT document); 103 DLLEXPORT int FPDFDoc_GetPageMode(FPDF_DOCUMENT document);
104 104
105 #ifdef __cplusplus 105 #ifdef __cplusplus
106 }; 106 };
107 #endif 107 #endif
108 #endif 108 #endif
OLDNEW
« no previous file with comments | « public/fpdf_dataavail.h ('k') | public/fpdf_formfill.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698