diff options
author | Tom Sepez <tsepez@chromium.org> | 2015-05-12 17:28:08 -0700 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2015-05-12 17:28:08 -0700 |
commit | cf22eb8ac24d944aac08d6a17c12b8a3a602c6f5 (patch) | |
tree | 60da3c149c8587662c020c629c1d50ed7e4a859d /public/fpdf_ext.h | |
parent | 12df7f730cea21885c177254bb2b4e1b9e1bea59 (diff) | |
download | pdfium-cf22eb8ac24d944aac08d6a17c12b8a3a602c6f5.tar.xz |
Merge to XFA: Make (and verify) public/ files compile under C.
The following files needed adjustment beyond a mechanical merge:
fpdfsdk/src/fpdfview.cpp
public/fpdf_formfill.h
samples/pdfium_test.cc
testing/embedder_test.cpp
Original Review URL: https://codereview.chromium.org/1130843003
BUG=pdfium:158
R=thestig@chromium.org
Review URL: https://codereview.chromium.org/1137233002
Diffstat (limited to 'public/fpdf_ext.h')
-rw-r--r-- | public/fpdf_ext.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/public/fpdf_ext.h b/public/fpdf_ext.h index 96e3c857fd..a67ac2eacf 100644 --- a/public/fpdf_ext.h +++ b/public/fpdf_ext.h @@ -53,8 +53,8 @@ typedef struct _UNSUPPORT_INFO * None. * */ - void(*FSDK_UnSupport_Handler)(_UNSUPPORT_INFO* pThis,int nType); -}UNSUPPORT_INFO; + void(*FSDK_UnSupport_Handler)(struct _UNSUPPORT_INFO* pThis, int nType); +} UNSUPPORT_INFO; /** |