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 // NOTE: External docs refer to this file as "fpdfview.h", so do not rename |
| 8 // despite lack of consitency with other public files. |
7 | 9 |
8 #ifndef _FPDFVIEW_H_ | 10 #ifndef _FPDFVIEW_H_ |
9 #define _FPDFVIEW_H_ | 11 #define _FPDFVIEW_H_ |
10 | 12 |
11 #if defined(_WIN32) && !defined(__WINDOWS__) | 13 #if defined(_WIN32) && !defined(__WINDOWS__) |
12 #include <windows.h> | 14 #include <windows.h> |
13 #endif | 15 #endif |
14 | 16 |
15 // Data types | 17 // Data types |
16 typedef void* FPDF_MODULEMGR; | 18 typedef void* FPDF_MODULEMGR; |
(...skipping 622 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
639 // If buflen is not sufficiently large, it will be set t
o -1 upon return. | 641 // If buflen is not sufficiently large, it will be set t
o -1 upon return. |
640 // | 642 // |
641 DLLEXPORT FPDF_DEST STDCALL FPDF_GetNamedDest(FPDF_DOCUMENT document, int index,
void* buffer, long& buflen); | 643 DLLEXPORT FPDF_DEST STDCALL FPDF_GetNamedDest(FPDF_DOCUMENT document, int index,
void* buffer, long& buflen); |
642 | 644 |
643 | 645 |
644 #ifdef __cplusplus | 646 #ifdef __cplusplus |
645 }; | 647 }; |
646 #endif | 648 #endif |
647 | 649 |
648 #endif // _FPDFVIEW_H_ | 650 #endif // _FPDFVIEW_H_ |
OLD | NEW |