| 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 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 208 CHK(FPDF_GetFileVersion); | 208 CHK(FPDF_GetFileVersion); |
| 209 CHK(FPDF_GetLastError); | 209 CHK(FPDF_GetLastError); |
| 210 CHK(FPDF_GetDocPermissions); | 210 CHK(FPDF_GetDocPermissions); |
| 211 CHK(FPDF_GetSecurityHandlerRevision); | 211 CHK(FPDF_GetSecurityHandlerRevision); |
| 212 CHK(FPDF_GetPageCount); | 212 CHK(FPDF_GetPageCount); |
| 213 CHK(FPDF_LoadPage); | 213 CHK(FPDF_LoadPage); |
| 214 CHK(FPDF_GetPageWidth); | 214 CHK(FPDF_GetPageWidth); |
| 215 CHK(FPDF_GetPageHeight); | 215 CHK(FPDF_GetPageHeight); |
| 216 CHK(FPDF_GetPageSizeByIndex); | 216 CHK(FPDF_GetPageSizeByIndex); |
| 217 CHK(FPDF_RenderPageBitmap); | 217 CHK(FPDF_RenderPageBitmap); |
| 218 CHK(FPDF_RenderPageBitmapWithMatrix); |
| 218 CHK(FPDF_ClosePage); | 219 CHK(FPDF_ClosePage); |
| 219 CHK(FPDF_CloseDocument); | 220 CHK(FPDF_CloseDocument); |
| 220 CHK(FPDF_DeviceToPage); | 221 CHK(FPDF_DeviceToPage); |
| 221 CHK(FPDF_PageToDevice); | 222 CHK(FPDF_PageToDevice); |
| 222 CHK(FPDFBitmap_Create); | 223 CHK(FPDFBitmap_Create); |
| 223 CHK(FPDFBitmap_CreateEx); | 224 CHK(FPDFBitmap_CreateEx); |
| 224 CHK(FPDFBitmap_FillRect); | 225 CHK(FPDFBitmap_FillRect); |
| 225 CHK(FPDFBitmap_GetBuffer); | 226 CHK(FPDFBitmap_GetBuffer); |
| 226 CHK(FPDFBitmap_GetWidth); | 227 CHK(FPDFBitmap_GetWidth); |
| 227 CHK(FPDFBitmap_GetHeight); | 228 CHK(FPDFBitmap_GetHeight); |
| (...skipping 10 matching lines...) Expand all Loading... |
| 238 #ifdef PDF_ENABLE_XFA | 239 #ifdef PDF_ENABLE_XFA |
| 239 CHK(FPDF_BStr_Init); | 240 CHK(FPDF_BStr_Init); |
| 240 CHK(FPDF_BStr_Set); | 241 CHK(FPDF_BStr_Set); |
| 241 CHK(FPDF_BStr_Clear); | 242 CHK(FPDF_BStr_Clear); |
| 242 #endif | 243 #endif |
| 243 | 244 |
| 244 return 1; | 245 return 1; |
| 245 } | 246 } |
| 246 | 247 |
| 247 #undef CHK | 248 #undef CHK |
| OLD | NEW |