fixed windows access violation which occurs if one tries to retrieve
[swftools.git] / pdf2swf / xpdf / CharTypes.h
blobbae2f26775492143d644ac02b725e4ba17387d29
1 //========================================================================
2 //
3 // CharTypes.h
4 //
5 // Copyright 2001-2002 Glyph & Cog, LLC
6 //
7 //========================================================================
9 #ifndef CHARTYPES_H
10 #define CHARTYPES_H
12 // Unicode character.
13 typedef unsigned int Unicode;
15 // Character ID for CID character collections.
16 typedef unsigned int CID;
18 // This is large enough to hold any of the following:
19 // - 8-bit char code
20 // - 16-bit CID
21 // - Unicode
22 typedef unsigned int CharCode;
24 #endif