| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |