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

Side by Side Diff: fpdfsdk/include/fpdfview.h

Issue 801913002: Simplify PDFium by removing code that's not used in the open source repo. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 6 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
OLDNEW
1 // Copyright 2014 PDFium Authors. All rights reserved. 1 // Copyright 2014 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 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6 6
7 7
8 #ifndef _FPDFVIEW_H_ 8 #ifndef _FPDFVIEW_H_
9 #define _FPDFVIEW_H_ 9 #define _FPDFVIEW_H_
10 10
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 extern const char g_ModuleCodes[]; 119 extern const char g_ModuleCodes[];
120 120
121 // Exported Functions 121 // Exported Functions
122 #ifdef __cplusplus 122 #ifdef __cplusplus
123 extern "C" { 123 extern "C" {
124 #endif 124 #endif
125 125
126 // Function: FPDF_InitLibrary 126 // Function: FPDF_InitLibrary
127 // Initialize the FPDFSDK library 127 // Initialize the FPDFSDK library
128 // Parameters: 128 // Parameters:
129 //» » » hInstance» -» For WIN32 system only: the insta nce of the executable or DLL module. 129 //» » » None
130 // Return value: 130 // Return value:
131 // None. 131 // None.
132 // Comments: 132 // Comments:
133 // You have to call this function before you can call any P DF processing functions. 133 // You have to call this function before you can call any P DF processing functions.
134 134
135 DLLEXPORT void STDCALL FPDF_InitLibrary(void* hInstance); 135 DLLEXPORT void STDCALL FPDF_InitLibrary();
136 136
137 137
138 // Function: FPDF_DestroyLibary 138 // Function: FPDF_DestroyLibary
139 // Release all resources allocated by the FPDFSDK library. 139 // Release all resources allocated by the FPDFSDK library.
140 // Parameters: 140 // Parameters:
141 // None. 141 // None.
142 // Return value: 142 // Return value:
143 // None. 143 // None.
144 // Comments: 144 // Comments:
145 // You can call this function to release all memory blocks allocated by the library. 145 // You can call this function to release all memory blocks allocated by the library.
(...skipping 464 matching lines...) Expand 10 before | Expand all | Expand 10 after
610 // Return value: 610 // Return value:
611 // The handle of the dest. 611 // The handle of the dest.
612 // 612 //
613 DLLEXPORT FPDF_DEST STDCALL FPDF_GetNamedDestByName(FPDF_DOCUMENT document,FPDF_ BYTESTRING name); 613 DLLEXPORT FPDF_DEST STDCALL FPDF_GetNamedDestByName(FPDF_DOCUMENT document,FPDF_ BYTESTRING name);
614 614
615 #ifdef __cplusplus 615 #ifdef __cplusplus
616 }; 616 };
617 #endif 617 #endif
618 618
619 #endif // _FPDFVIEW_H_ 619 #endif // _FPDFVIEW_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698