| 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 #include "public/fpdf_dataavail.h" | 7 #include "public/fpdf_dataavail.h" |
| 8 | 8 |
| 9 #include "core/include/fpdfapi/cpdf_document.h" | 9 #include "core/fpdfapi/fpdf_parser/include/cpdf_document.h" |
| 10 #include "core/include/fpdfapi/ipdf_data_avail.h" | 10 #include "core/fpdfapi/fpdf_parser/include/ipdf_data_avail.h" |
| 11 #include "fpdfsdk/include/fsdk_define.h" | 11 #include "fpdfsdk/include/fsdk_define.h" |
| 12 #include "public/fpdf_formfill.h" | 12 #include "public/fpdf_formfill.h" |
| 13 | 13 |
| 14 // These checks are here because core/ and public/ cannot depend on each other. | 14 // These checks are here because core/ and public/ cannot depend on each other. |
| 15 static_assert(IPDF_DataAvail::DataError == PDF_DATA_ERROR, | 15 static_assert(IPDF_DataAvail::DataError == PDF_DATA_ERROR, |
| 16 "IPDF_DataAvail::DataError value mismatch"); | 16 "IPDF_DataAvail::DataError value mismatch"); |
| 17 static_assert(IPDF_DataAvail::DataNotAvailable == PDF_DATA_NOTAVAIL, | 17 static_assert(IPDF_DataAvail::DataNotAvailable == PDF_DATA_NOTAVAIL, |
| 18 "IPDF_DataAvail::DataNotAvailable value mismatch"); | 18 "IPDF_DataAvail::DataNotAvailable value mismatch"); |
| 19 static_assert(IPDF_DataAvail::DataAvailable == PDF_DATA_AVAIL, | 19 static_assert(IPDF_DataAvail::DataAvailable == PDF_DATA_AVAIL, |
| 20 "IPDF_DataAvail::DataAvailable value mismatch"); | 20 "IPDF_DataAvail::DataAvailable value mismatch"); |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 return PDF_FORM_ERROR; | 163 return PDF_FORM_ERROR; |
| 164 CFPDF_DownloadHintsWrap hints_wrap(hints); | 164 CFPDF_DownloadHintsWrap hints_wrap(hints); |
| 165 return ((CFPDF_DataAvail*)avail)->m_pDataAvail->IsFormAvail(&hints_wrap); | 165 return ((CFPDF_DataAvail*)avail)->m_pDataAvail->IsFormAvail(&hints_wrap); |
| 166 } | 166 } |
| 167 | 167 |
| 168 DLLEXPORT int STDCALL FPDFAvail_IsLinearized(FPDF_AVAIL avail) { | 168 DLLEXPORT int STDCALL FPDFAvail_IsLinearized(FPDF_AVAIL avail) { |
| 169 if (!avail) | 169 if (!avail) |
| 170 return PDF_LINEARIZATION_UNKNOWN; | 170 return PDF_LINEARIZATION_UNKNOWN; |
| 171 return ((CFPDF_DataAvail*)avail)->m_pDataAvail->IsLinearizedPDF(); | 171 return ((CFPDF_DataAvail*)avail)->m_pDataAvail->IsLinearizedPDF(); |
| 172 } | 172 } |
| OLD | NEW |