| 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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 CHK(FPDFDest_GetLocationInPage); | 58 CHK(FPDFDest_GetLocationInPage); |
| 59 CHK(FPDFLink_GetLinkAtPoint); | 59 CHK(FPDFLink_GetLinkAtPoint); |
| 60 CHK(FPDFLink_GetLinkZOrderAtPoint); | 60 CHK(FPDFLink_GetLinkZOrderAtPoint); |
| 61 CHK(FPDFLink_GetDest); | 61 CHK(FPDFLink_GetDest); |
| 62 CHK(FPDFLink_GetAction); | 62 CHK(FPDFLink_GetAction); |
| 63 CHK(FPDFLink_Enumerate); | 63 CHK(FPDFLink_Enumerate); |
| 64 CHK(FPDFLink_GetAnnotRect); | 64 CHK(FPDFLink_GetAnnotRect); |
| 65 CHK(FPDFLink_CountQuadPoints); | 65 CHK(FPDFLink_CountQuadPoints); |
| 66 CHK(FPDFLink_GetQuadPoints); | 66 CHK(FPDFLink_GetQuadPoints); |
| 67 CHK(FPDF_GetMetaText); | 67 CHK(FPDF_GetMetaText); |
| 68 CHK(FPDF_GetPagelLabel); | 68 CHK(FPDF_GetPageLabel); |
| 69 | 69 |
| 70 // fpdf_edit.h | 70 // fpdf_edit.h |
| 71 CHK(FPDF_CreateNewDocument); | 71 CHK(FPDF_CreateNewDocument); |
| 72 CHK(FPDFPage_New); | 72 CHK(FPDFPage_New); |
| 73 CHK(FPDFPage_Delete); | 73 CHK(FPDFPage_Delete); |
| 74 CHK(FPDFPage_GetRotation); | 74 CHK(FPDFPage_GetRotation); |
| 75 CHK(FPDFPage_SetRotation); | 75 CHK(FPDFPage_SetRotation); |
| 76 CHK(FPDFPage_InsertObject); | 76 CHK(FPDFPage_InsertObject); |
| 77 CHK(FPDFPage_CountObject); | 77 CHK(FPDFPage_CountObject); |
| 78 CHK(FPDFPage_GetObject); | 78 CHK(FPDFPage_GetObject); |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 249 #ifdef PDF_ENABLE_XFA | 249 #ifdef PDF_ENABLE_XFA |
| 250 CHK(FPDF_BStr_Init); | 250 CHK(FPDF_BStr_Init); |
| 251 CHK(FPDF_BStr_Set); | 251 CHK(FPDF_BStr_Set); |
| 252 CHK(FPDF_BStr_Clear); | 252 CHK(FPDF_BStr_Clear); |
| 253 #endif | 253 #endif |
| 254 | 254 |
| 255 return 1; | 255 return 1; |
| 256 } | 256 } |
| 257 | 257 |
| 258 #undef CHK | 258 #undef CHK |
| OLD | NEW |