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 "fpdfview_c_api_test.h" | 10 #include "fpdfview_c_api_test.h" |
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
185 CHK(FPDFPage_GetMediaBox); | 185 CHK(FPDFPage_GetMediaBox); |
186 CHK(FPDFPage_GetCropBox); | 186 CHK(FPDFPage_GetCropBox); |
187 CHK(FPDFPage_TransFormWithClip); | 187 CHK(FPDFPage_TransFormWithClip); |
188 CHK(FPDFPageObj_TransformClipPath); | 188 CHK(FPDFPageObj_TransformClipPath); |
189 CHK(FPDF_CreateClipPath); | 189 CHK(FPDF_CreateClipPath); |
190 CHK(FPDF_DestroyClipPath); | 190 CHK(FPDF_DestroyClipPath); |
191 CHK(FPDFPage_InsertClipPath); | 191 CHK(FPDFPage_InsertClipPath); |
192 | 192 |
193 // fpdfview.h | 193 // fpdfview.h |
194 CHK(FPDF_InitLibrary); | 194 CHK(FPDF_InitLibrary); |
| 195 CHK(FPDF_InitLibraryWithConfig); |
195 CHK(FPDF_DestroyLibrary); | 196 CHK(FPDF_DestroyLibrary); |
196 CHK(FPDF_SetSandBoxPolicy); | 197 CHK(FPDF_SetSandBoxPolicy); |
197 CHK(FPDF_LoadDocument); | 198 CHK(FPDF_LoadDocument); |
198 CHK(FPDF_LoadMemDocument); | 199 CHK(FPDF_LoadMemDocument); |
199 CHK(FPDF_LoadCustomDocument); | 200 CHK(FPDF_LoadCustomDocument); |
200 CHK(FPDF_GetFileVersion); | 201 CHK(FPDF_GetFileVersion); |
201 CHK(FPDF_GetLastError); | 202 CHK(FPDF_GetLastError); |
202 CHK(FPDF_GetDocPermissions); | 203 CHK(FPDF_GetDocPermissions); |
203 CHK(FPDF_GetSecurityHandlerRevision); | 204 CHK(FPDF_GetSecurityHandlerRevision); |
204 CHK(FPDF_GetPageCount); | 205 CHK(FPDF_GetPageCount); |
(...skipping 22 matching lines...) Expand all Loading... |
227 CHK(FPDF_GetNamedDestByName); | 228 CHK(FPDF_GetNamedDestByName); |
228 CHK(FPDF_GetNamedDest); | 229 CHK(FPDF_GetNamedDest); |
229 CHK(FPDF_BStr_Init); | 230 CHK(FPDF_BStr_Init); |
230 CHK(FPDF_BStr_Set); | 231 CHK(FPDF_BStr_Set); |
231 CHK(FPDF_BStr_Clear); | 232 CHK(FPDF_BStr_Clear); |
232 | 233 |
233 return 1; | 234 return 1; |
234 } | 235 } |
235 | 236 |
236 #undef CHK | 237 #undef CHK |
OLD | NEW |