Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-12-10 10:23:45

0001 //========================================================================
0002 //
0003 // CharTypes.h
0004 //
0005 // Copyright 2001-2003 Glyph & Cog, LLC
0006 //
0007 //========================================================================
0008 
0009 #ifndef CHARTYPES_H
0010 #define CHARTYPES_H
0011 
0012 // Unicode character.
0013 typedef unsigned int Unicode;
0014 
0015 // Character ID for CID character collections.
0016 typedef unsigned int CID;
0017 
0018 // This is large enough to hold any of the following:
0019 // - 8-bit char code
0020 // - 16-bit CID
0021 // - Unicode
0022 typedef unsigned int CharCode;
0023 
0024 #endif