diff options
author | Tom Sepez <tsepez@chromium.org> | 2015-08-19 13:25:44 -0700 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2015-08-19 13:25:44 -0700 |
commit | c3f4894a6862c74b9ab32b4ec38c531de6ecd83c (patch) | |
tree | f5ad333e8d418d5a978a595f51e94b3ad8f365da /core/src/fpdfapi/fpdf_cmaps | |
parent | 71c15a5e6652952a94ba3a3ef7ac0392e3a06962 (diff) | |
download | pdfium-c3f4894a6862c74b9ab32b4ec38c531de6ecd83c.tar.xz |
Extern in .cpp file is a code smell, part 2.
Fixes the remaining issues, except for JBIG2/Skia ...
R=thestig@chromium.org
Review URL: https://codereview.chromium.org/1298393003 .
Diffstat (limited to 'core/src/fpdfapi/fpdf_cmaps')
-rw-r--r-- | core/src/fpdfapi/fpdf_cmaps/cmap_int.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/core/src/fpdfapi/fpdf_cmaps/cmap_int.h b/core/src/fpdfapi/fpdf_cmaps/cmap_int.h index 41743a8f4a..7d51cee4cf 100644 --- a/core/src/fpdfapi/fpdf_cmaps/cmap_int.h +++ b/core/src/fpdfapi/fpdf_cmaps/cmap_int.h @@ -22,4 +22,11 @@ struct FXCMAP_CMap { int m_UseOffset; }; +void FPDFAPI_FindEmbeddedCMap(const char* name, + int charset, + int coding, + const FXCMAP_CMap*& pMap); +FX_WORD FPDFAPI_CIDFromCharCode(const FXCMAP_CMap* pMap, FX_DWORD charcode); +FX_DWORD FPDFAPI_CharCodeFromCID(const FXCMAP_CMap* pMap, FX_WORD cid); + #endif // CORE_SRC_FPDFAPI_FPDF_CMAPS_CMAP_INT_H_ |