summaryrefslogtreecommitdiff
path: root/noncore/unsupported/qpdf/xpdf/CharTypes.h
Unidiff
Diffstat (limited to 'noncore/unsupported/qpdf/xpdf/CharTypes.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/unsupported/qpdf/xpdf/CharTypes.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/noncore/unsupported/qpdf/xpdf/CharTypes.h b/noncore/unsupported/qpdf/xpdf/CharTypes.h
new file mode 100644
index 0000000..8938be5
--- a/dev/null
+++ b/noncore/unsupported/qpdf/xpdf/CharTypes.h
@@ -0,0 +1,24 @@
1//========================================================================
2//
3// CharTypes.h
4//
5// Copyright 2001 Derek B. Noonburg
6//
7//========================================================================
8
9#ifndef CHARTYPES_H
10#define CHARTYPES_H
11
12// Unicode character.
13typedef unsigned int Unicode;
14
15// Character ID for CID character collections.
16typedef unsigned int CID;
17
18// This is large enough to hold any of the following:
19// - 8-bit char code
20// - 16-bit CID
21// - Unicode
22typedef unsigned int CharCode;
23
24#endif