diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-08-10 14:13:02 -0400 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-08-10 18:30:02 +0000 |
commit | 00d2ad12fa9d37581fd12d2ea5ea702c9e2e2e16 (patch) | |
tree | 14aee847aea03dcab44a07383dfb7539f891738a /public/fpdf_searchex.h | |
parent | d9b0dac5e78795fa916c163fac385182fc9ceea9 (diff) | |
download | pdfium-00d2ad12fa9d37581fd12d2ea5ea702c9e2e2e16.tar.xz |
Rename DLLEXPORT AND STDCALL
This CL renames DLLEXPORT to FPDF_EXPORT and STDCALL to FPDF_CALLCONV to
be more PDFium specific.
This is split off of https://pdfium-review.googlesource.com/c/8970 by
Felix Kauselmann.
Bug: pdfium:825
Change-Id: I0aea9d43f1714b1e10e935c4a7eea685a5ad8998
Reviewed-on: https://pdfium-review.googlesource.com/10610
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'public/fpdf_searchex.h')
-rw-r--r-- | public/fpdf_searchex.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/public/fpdf_searchex.h b/public/fpdf_searchex.h index a795a52394..207c1046c1 100644 --- a/public/fpdf_searchex.h +++ b/public/fpdf_searchex.h @@ -20,7 +20,7 @@ extern "C" { // nTextIndex - index of the text returned from |FPDFText_GetText|. // // Returns the index of the character in internal character list. -1 for error. -DLLEXPORT int STDCALL +FPDF_EXPORT int FPDF_CALLCONV FPDFText_GetCharIndexFromTextIndex(FPDF_TEXTPAGE text_page, int nTextIndex); // Get the text index in |text_page| internal character list. @@ -29,7 +29,7 @@ FPDFText_GetCharIndexFromTextIndex(FPDF_TEXTPAGE text_page, int nTextIndex); // nCharIndex - index of the character in internal character list. // // Returns the index of the text returned from |FPDFText_GetText|. -1 for error. -DLLEXPORT int STDCALL +FPDF_EXPORT int FPDF_CALLCONV FPDFText_GetTextIndexFromCharIndex(FPDF_TEXTPAGE text_page, int nCharIndex); #ifdef __cplusplus |