Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(296)

Side by Side Diff: fpdfsdk/fpdfview_c_api_test.c

Issue 2559513002: Fix FPDF_GetPageLabel API typo. (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « fpdfsdk/fpdfdoc_embeddertest.cpp ('k') | public/fpdf_doc.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « fpdfsdk/fpdfdoc_embeddertest.cpp ('k') | public/fpdf_doc.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698