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 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
221 CHK(FPDFBitmap_FillRect); | 221 CHK(FPDFBitmap_FillRect); |
222 CHK(FPDFBitmap_GetBuffer); | 222 CHK(FPDFBitmap_GetBuffer); |
223 CHK(FPDFBitmap_GetWidth); | 223 CHK(FPDFBitmap_GetWidth); |
224 CHK(FPDFBitmap_GetHeight); | 224 CHK(FPDFBitmap_GetHeight); |
225 CHK(FPDFBitmap_GetStride); | 225 CHK(FPDFBitmap_GetStride); |
226 CHK(FPDFBitmap_Destroy); | 226 CHK(FPDFBitmap_Destroy); |
227 CHK(FPDF_VIEWERREF_GetPrintScaling); | 227 CHK(FPDF_VIEWERREF_GetPrintScaling); |
228 CHK(FPDF_VIEWERREF_GetNumCopies); | 228 CHK(FPDF_VIEWERREF_GetNumCopies); |
229 CHK(FPDF_VIEWERREF_GetPrintPageRange); | 229 CHK(FPDF_VIEWERREF_GetPrintPageRange); |
230 CHK(FPDF_VIEWERREF_GetDuplex); | 230 CHK(FPDF_VIEWERREF_GetDuplex); |
| 231 CHK(FPDF_VIEWERREF_GetName); |
231 CHK(FPDF_CountNamedDests); | 232 CHK(FPDF_CountNamedDests); |
232 CHK(FPDF_GetNamedDestByName); | 233 CHK(FPDF_GetNamedDestByName); |
233 CHK(FPDF_GetNamedDest); | 234 CHK(FPDF_GetNamedDest); |
234 #ifdef PDF_ENABLE_XFA | 235 #ifdef PDF_ENABLE_XFA |
235 CHK(FPDF_BStr_Init); | 236 CHK(FPDF_BStr_Init); |
236 CHK(FPDF_BStr_Set); | 237 CHK(FPDF_BStr_Set); |
237 CHK(FPDF_BStr_Clear); | 238 CHK(FPDF_BStr_Clear); |
238 #endif | 239 #endif |
239 | 240 |
240 return 1; | 241 return 1; |
241 } | 242 } |
242 | 243 |
243 #undef CHK | 244 #undef CHK |
OLD | NEW |