| 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 PUBLIC_FPDF_FORMFILL_H_ | 7 #ifndef PUBLIC_FPDF_FORMFILL_H_ |
| 8 #define PUBLIC_FPDF_FORMFILL_H_ | 8 #define PUBLIC_FPDF_FORMFILL_H_ |
| 9 | 9 |
| 10 #include "fpdfview.h" | 10 #include "fpdfview.h" |
| (...skipping 592 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 603 * Interface Version: | 603 * Interface Version: |
| 604 * 1 | 604 * 1 |
| 605 * Implementation Required: | 605 * Implementation Required: |
| 606 * yes | 606 * yes |
| 607 * Parameters: | 607 * Parameters: |
| 608 * pThis - Pointer to the interface structure itself. | 608 * pThis - Pointer to the interface structure itself. |
| 609 * page - Handle to page. Returned by FPDF_LoadPage function. | 609 * page - Handle to page. Returned by FPDF_LoadPage function. |
| 610 * Return value: | 610 * Return value: |
| 611 * The page rotation. Should be 0(0 degree),1(90 degree),2(180 | 611 * The page rotation. Should be 0(0 degree),1(90 degree),2(180 |
| 612 * degree),3(270 degree), in a clockwise direction. | 612 * degree),3(270 degree), in a clockwise direction. |
| 613 * |
| 614 * Note: Unused. |
| 613 * */ | 615 * */ |
| 614 int (*FFI_GetRotation)(struct _FPDF_FORMFILLINFO* pThis, FPDF_PAGE page); | 616 int (*FFI_GetRotation)(struct _FPDF_FORMFILLINFO* pThis, FPDF_PAGE page); |
| 615 | 617 |
| 616 /** | 618 /** |
| 617 * Method: FFI_ExecuteNamedAction | 619 * Method: FFI_ExecuteNamedAction |
| 618 * This method will execute an named action. | 620 * This method will execute an named action. |
| 619 * Interface Version: | 621 * Interface Version: |
| 620 * 1 | 622 * 1 |
| 621 * Implementation Required: | 623 * Implementation Required: |
| 622 * yes | 624 * yes |
| (...skipping 1131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1754 FPDF_StringHandleAddString(FPDF_STRINGHANDLE stringHandle, | 1756 FPDF_StringHandleAddString(FPDF_STRINGHANDLE stringHandle, |
| 1755 FPDF_BYTESTRING bsText, | 1757 FPDF_BYTESTRING bsText, |
| 1756 FPDF_DWORD size); | 1758 FPDF_DWORD size); |
| 1757 #endif // PDF_ENABLE_XFA | 1759 #endif // PDF_ENABLE_XFA |
| 1758 | 1760 |
| 1759 #ifdef __cplusplus | 1761 #ifdef __cplusplus |
| 1760 } | 1762 } |
| 1761 #endif | 1763 #endif |
| 1762 | 1764 |
| 1763 #endif // PUBLIC_FPDF_FORMFILL_H_ | 1765 #endif // PUBLIC_FPDF_FORMFILL_H_ |
| OLD | NEW |