summaryrefslogtreecommitdiff
path: root/public
diff options
context:
space:
mode:
authorTom Sepez <tsepez@chromium.org>2015-08-13 11:32:36 -0700
committerTom Sepez <tsepez@chromium.org>2015-08-13 11:32:36 -0700
commit98367f3ef7dc76c856db1c8a3721bef5f9b7adfc (patch)
treeb0f9533e42d1d2383bc3667db84095b53a971ac8 /public
parentd8b5e73d8609b74e6a995ee1768d20d47bd4b089 (diff)
downloadpdfium-98367f3ef7dc76c856db1c8a3721bef5f9b7adfc.tar.xz
Revert "Allow external font-path configuration from pdfium_test."
This reverts commit d8b5e73d8609b74e6a995ee1768d20d47bd4b089. Broke corpus tests TBR=thestig@chromium.org Review URL: https://codereview.chromium.org/1292153002 .
Diffstat (limited to 'public')
-rw-r--r--public/fpdfview.h26
1 files changed, 1 insertions, 25 deletions
diff --git a/public/fpdfview.h b/public/fpdfview.h
index 9d199a1d2e..8379226411 100644
--- a/public/fpdfview.h
+++ b/public/fpdfview.h
@@ -124,33 +124,9 @@ extern "C" {
// Return value:
// None.
// Comments:
-// Convenience function to call FPDF_InitLibraryWithConfig() for
-// backwards comatibility purposes.
-DLLEXPORT void STDCALL FPDF_InitLibrary();
-
-// Process-wide options for initializing library.
-typedef struct FPDF_LIBRARY_CONFIG_ {
- // Version number of the interface. Currently must be 1.
- int version;
-
- // Array of paths to scan in place of the defaults when using built-in
- // FXGE font loading code. The array is terminated by a NULL pointer.
- // The Array may be NULL itself to use the default paths. May be ignored
- // entirely depending upon the platform.
- const char** m_pUserFontPaths;
-} FPDF_LIBRARY_CONFIG;
-
-// Function: FPDF_InitLibraryWithConfig
-// Initialize the FPDFSDK library
-// Parameters:
-// cfg - configuration information as above.
-// Return value:
-// None.
-// Comments:
// You have to call this function before you can call any PDF
// processing functions.
-DLLEXPORT void STDCALL FPDF_InitLibraryWithConfig(
- const FPDF_LIBRARY_CONFIG* config);
+DLLEXPORT void STDCALL FPDF_InitLibrary();
// Function: FPDF_DestroyLibary
// Release all resources allocated by the FPDFSDK library.