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_ext.h" |
| 8 #include "../../public/fpdf_formfill.h" |
| 9 #include "../../public/fpdf_progressive.h" |
| 10 #include "../../public/fpdfview.h" |
7 #include "../include/fsdk_define.h" | 11 #include "../include/fsdk_define.h" |
8 #include "../include/fsdk_mgr.h" | 12 #include "../include/fsdk_mgr.h" |
9 #include "../include/fpdfview.h" | |
10 #include "../include/fsdk_rendercontext.h" | 13 #include "../include/fsdk_rendercontext.h" |
11 #include "../include/fpdf_progressive.h" | |
12 #include "../include/fpdf_ext.h" | |
13 #include "../../../core/src/fxcrt/fx_safe_types.h" | 14 #include "../../../core/src/fxcrt/fx_safe_types.h" |
14 #include "../../third_party/base/nonstd_unique_ptr.h" | 15 #include "../../third_party/base/nonstd_unique_ptr.h" |
15 #include "../../third_party/base/numerics/safe_conversions_impl.h" | 16 #include "../../third_party/base/numerics/safe_conversions_impl.h" |
16 #include "../include/fpdfformfill.h" | |
17 #include "../include/fpdfxfa/fpdfxfa_doc.h" | 17 #include "../include/fpdfxfa/fpdfxfa_doc.h" |
18 #include "../include/fpdfxfa/fpdfxfa_app.h" | 18 #include "../include/fpdfxfa/fpdfxfa_app.h" |
19 #include "../include/fpdfxfa/fpdfxfa_page.h" | 19 #include "../include/fpdfxfa/fpdfxfa_page.h" |
20 #include "../include/fpdfxfa/fpdfxfa_util.h" | 20 #include "../include/fpdfxfa/fpdfxfa_util.h" |
21 | 21 |
22 CFPDF_FileStream::CFPDF_FileStream(FPDF_FILEHANDLER* pFS) | 22 CFPDF_FileStream::CFPDF_FileStream(FPDF_FILEHANDLER* pFS) |
23 { | 23 { |
24 m_pFS = pFS; | 24 m_pFS = pFS; |
25 m_nCurPos = 0; | 25 m_nCurPos = 0; |
26 } | 26 } |
(...skipping 1026 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1053 if (!buffer) { | 1053 if (!buffer) { |
1054 buflen = len; | 1054 buflen = len; |
1055 } else if (buflen >= len) { | 1055 } else if (buflen >= len) { |
1056 memcpy(buffer, utf16Name.c_str(), len); | 1056 memcpy(buffer, utf16Name.c_str(), len); |
1057 buflen = len; | 1057 buflen = len; |
1058 } else { | 1058 } else { |
1059 buflen = -1; | 1059 buflen = -1; |
1060 } | 1060 } |
1061 return (FPDF_DEST)pDestObj; | 1061 return (FPDF_DEST)pDestObj; |
1062 } | 1062 } |
OLD | NEW |