diff options
author | Tom Sepez <tsepez@chromium.org> | 2015-05-12 16:17:04 -0700 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2015-05-12 16:17:04 -0700 |
commit | b2aa54381811383d4a86fbe7b194907c33e8dcc1 (patch) | |
tree | c6e7003e8c63a060345147a2243d114d19fa54d7 /testing/embedder_test.cpp | |
parent | e6bd866c5c64950a8b2836e7254e1f44b2fe0925 (diff) | |
download | pdfium-b2aa54381811383d4a86fbe7b194907c33e8dcc1.tar.xz |
Make (and verify) public/ files compile under C.
This involves adding some missing extern "C" { } declarations,
using FPDF_ types instead of C++ types, and converting pass
by reference arguments into pointers.
Test this using fpdfview_embedertest for simplicity.
BUG=pdfium:158
R=thestig@chromium.org
Review URL: https://codereview.chromium.org/1130843003
Diffstat (limited to 'testing/embedder_test.cpp')
-rw-r--r-- | testing/embedder_test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/embedder_test.cpp b/testing/embedder_test.cpp index e1473c0473..4cf7a8db8a 100644 --- a/testing/embedder_test.cpp +++ b/testing/embedder_test.cpp @@ -166,7 +166,7 @@ int Get_Block(void* param, unsigned long pos, unsigned char* pBuf, return 1; } -bool Is_Data_Avail(FX_FILEAVAIL* pThis, size_t offset, size_t size) { +FPDF_BOOL Is_Data_Avail(FX_FILEAVAIL* pThis, size_t offset, size_t size) { return true; } |