Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(30)

Side by Side Diff: core/fpdfapi/fpdf_cmaps/cmap_int.h

Issue 2391013002: Move core/fpdfapi/fpdf_cmaps to core/fpdfapi/cmaps (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « core/fpdfapi/fpdf_cmaps/Korea1/cmaps_korea1.cpp ('k') | core/fpdfapi/fpdf_cmaps/fpdf_cmaps.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2014 PDFium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6
7 #ifndef CORE_FPDFAPI_FPDF_CMAPS_CMAP_INT_H_
8 #define CORE_FPDFAPI_FPDF_CMAPS_CMAP_INT_H_
9
10 #include "core/fxcrt/fx_string.h"
11 #include "core/fxcrt/fx_system.h"
12
13 struct FXCMAP_CMap {
14 enum MapType { None, Single, Range, Reverse };
15
16 const char* m_Name;
17 MapType m_WordMapType;
18 const uint16_t* m_pWordMap;
19 int m_WordCount;
20 MapType m_DWordMapType;
21 const uint16_t* m_pDWordMap;
22 int m_DWordCount;
23 int m_UseOffset;
24 };
25
26 void FPDFAPI_FindEmbeddedCMap(const CFX_ByteString& name,
27 int charset,
28 int coding,
29 const FXCMAP_CMap*& pMap);
30 uint16_t FPDFAPI_CIDFromCharCode(const FXCMAP_CMap* pMap, uint32_t charcode);
31 uint32_t FPDFAPI_CharCodeFromCID(const FXCMAP_CMap* pMap, uint16_t cid);
32
33 #endif // CORE_FPDFAPI_FPDF_CMAPS_CMAP_INT_H_
OLDNEW
« no previous file with comments | « core/fpdfapi/fpdf_cmaps/Korea1/cmaps_korea1.cpp ('k') | core/fpdfapi/fpdf_cmaps/fpdf_cmaps.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698