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 /public/fpdf_fwlevent.h | |
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 'public/fpdf_fwlevent.h')
-rw-r--r-- | public/fpdf_fwlevent.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/public/fpdf_fwlevent.h b/public/fpdf_fwlevent.h index f77e7e399f..f27499a1c6 100644 --- a/public/fpdf_fwlevent.h +++ b/public/fpdf_fwlevent.h @@ -9,6 +9,10 @@ #include "fpdfview.h" +#ifdef __cplusplus +extern "C" { +#endif + typedef int FPDF_INT32; typedef unsigned int FPDF_UINT32; typedef float FPDF_FLOAT; @@ -281,6 +285,10 @@ struct FWL_EVENT }s; }; +#ifdef __cplusplus +} +#endif + #endif //_FWL_EVENT_H |