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 FPDFSDK_INCLUDE_FSDK_DEFINE_H_ | 7 #ifndef FPDFSDK_INCLUDE_FSDK_DEFINE_H_ |
8 #define FPDFSDK_INCLUDE_FSDK_DEFINE_H_ | 8 #define FPDFSDK_INCLUDE_FSDK_DEFINE_H_ |
9 | 9 |
10 #include "core/fpdfapi/fpdf_parser/cpdf_parser.h" | 10 #include "core/fpdfapi/fpdf_parser/cpdf_parser.h" |
11 #include "core/fxge/fx_dib.h" | 11 #include "core/fxge/fx_dib.h" |
12 #include "public/fpdfview.h" | 12 #include "public/fpdfview.h" |
13 | 13 |
14 #ifdef PDF_ENABLE_XFA | 14 #ifdef PDF_ENABLE_XFA |
15 #include "fpdfsdk/fpdfxfa/include/fpdfxfa_doc.h" | 15 #include "fpdfsdk/fpdfxfa/fpdfxfa_doc.h" |
16 #endif // PDF_ENABLE_XFA | 16 #endif // PDF_ENABLE_XFA |
17 | 17 |
18 #ifdef _WIN32 | 18 #ifdef _WIN32 |
19 #include <math.h> | 19 #include <math.h> |
20 #include <tchar.h> | 20 #include <tchar.h> |
21 #endif | 21 #endif |
22 | 22 |
23 class CPDF_Annot; | 23 class CPDF_Annot; |
24 class CPDF_Page; | 24 class CPDF_Page; |
25 class CPDF_PageRenderContext; | 25 class CPDF_PageRenderContext; |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
112 int rotate, | 112 int rotate, |
113 int flags, | 113 int flags, |
114 FX_BOOL bNeedToRestore, | 114 FX_BOOL bNeedToRestore, |
115 IFSDK_PAUSE_Adapter* pause); | 115 IFSDK_PAUSE_Adapter* pause); |
116 | 116 |
117 void CheckUnSupportError(CPDF_Document* pDoc, uint32_t err_code); | 117 void CheckUnSupportError(CPDF_Document* pDoc, uint32_t err_code); |
118 void CheckUnSupportAnnot(CPDF_Document* pDoc, const CPDF_Annot* pPDFAnnot); | 118 void CheckUnSupportAnnot(CPDF_Document* pDoc, const CPDF_Annot* pPDFAnnot); |
119 void ProcessParseError(CPDF_Parser::Error err); | 119 void ProcessParseError(CPDF_Parser::Error err); |
120 | 120 |
121 #endif // FPDFSDK_INCLUDE_FSDK_DEFINE_H_ | 121 #endif // FPDFSDK_INCLUDE_FSDK_DEFINE_H_ |
OLD | NEW |