| OLD | NEW |
| 1 // Copyright 2015 PDFium Authors. All rights reserved. | 1 // Copyright 2015 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 // This "C" (not "C++") file ensures that the public headers compile | 5 // This "C" (not "C++") file ensures that the public headers compile |
| 6 // and link for "C" (and not just "C++"). | 6 // and link for "C" (and not just "C++"). |
| 7 | 7 |
| 8 #include <stdio.h> | 8 #include <stdio.h> |
| 9 | 9 |
| 10 #include "fpdfsdk/fpdfview_c_api_test.h" | 10 #include "fpdfsdk/fpdfview_c_api_test.h" |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 CHK(FPDFBookmark_GetNextSibling); | 47 CHK(FPDFBookmark_GetNextSibling); |
| 48 CHK(FPDFBookmark_GetTitle); | 48 CHK(FPDFBookmark_GetTitle); |
| 49 CHK(FPDFBookmark_Find); | 49 CHK(FPDFBookmark_Find); |
| 50 CHK(FPDFBookmark_GetDest); | 50 CHK(FPDFBookmark_GetDest); |
| 51 CHK(FPDFBookmark_GetAction); | 51 CHK(FPDFBookmark_GetAction); |
| 52 CHK(FPDFAction_GetType); | 52 CHK(FPDFAction_GetType); |
| 53 CHK(FPDFAction_GetDest); | 53 CHK(FPDFAction_GetDest); |
| 54 CHK(FPDFAction_GetFilePath); | 54 CHK(FPDFAction_GetFilePath); |
| 55 CHK(FPDFAction_GetURIPath); | 55 CHK(FPDFAction_GetURIPath); |
| 56 CHK(FPDFDest_GetPageIndex); | 56 CHK(FPDFDest_GetPageIndex); |
| 57 CHK(FPDFDest_GetLocationInPage); |
| 57 CHK(FPDFLink_GetLinkAtPoint); | 58 CHK(FPDFLink_GetLinkAtPoint); |
| 58 CHK(FPDFLink_GetLinkZOrderAtPoint); | 59 CHK(FPDFLink_GetLinkZOrderAtPoint); |
| 59 CHK(FPDFLink_GetDest); | 60 CHK(FPDFLink_GetDest); |
| 60 CHK(FPDFLink_GetAction); | 61 CHK(FPDFLink_GetAction); |
| 61 CHK(FPDFLink_Enumerate); | 62 CHK(FPDFLink_Enumerate); |
| 62 CHK(FPDFLink_GetAnnotRect); | 63 CHK(FPDFLink_GetAnnotRect); |
| 63 CHK(FPDFLink_CountQuadPoints); | 64 CHK(FPDFLink_CountQuadPoints); |
| 64 CHK(FPDFLink_GetQuadPoints); | 65 CHK(FPDFLink_GetQuadPoints); |
| 65 CHK(FPDF_GetMetaText); | 66 CHK(FPDF_GetMetaText); |
| 66 | 67 |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 235 #ifdef PDF_ENABLE_XFA | 236 #ifdef PDF_ENABLE_XFA |
| 236 CHK(FPDF_BStr_Init); | 237 CHK(FPDF_BStr_Init); |
| 237 CHK(FPDF_BStr_Set); | 238 CHK(FPDF_BStr_Set); |
| 238 CHK(FPDF_BStr_Clear); | 239 CHK(FPDF_BStr_Clear); |
| 239 #endif | 240 #endif |
| 240 | 241 |
| 241 return 1; | 242 return 1; |
| 242 } | 243 } |
| 243 | 244 |
| 244 #undef CHK | 245 #undef CHK |
| OLD | NEW |