~ubuntu-branches/ubuntu/precise/ipe/precise

« back to all changes in this revision

Viewing changes to src/xpdflib/chartypes.h

  • Committer: Bazaar Package Importer
  • Author(s): Steve M. Robbins
  • Date: 2005-02-24 22:09:16 UTC
  • mfrom: (2.1.1 hoary)
  • Revision ID: james.westby@ubuntu.com-20050224220916-9vxiiqjz066r5489
Tags: 6.0pre23-2
debian/control: Ipe should depend on exact version of libipe.
Closes: #296771.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
// -*- C++ -*-
2
 
//========================================================================
3
 
//
4
 
// CharTypes.h
5
 
//
6
 
// Copyright 2001-2002 Glyph & Cog, LLC
7
 
//
8
 
//========================================================================
9
 
 
10
 
#ifndef CHARTYPES_H
11
 
#define CHARTYPES_H
12
 
 
13
 
// Unicode character.
14
 
typedef unsigned int Unicode;
15
 
 
16
 
// Character ID for CID character collections.
17
 
typedef unsigned int CID;
18
 
 
19
 
// This is large enough to hold any of the following:
20
 
// - 8-bit char code
21
 
// - 16-bit CID
22
 
// - Unicode
23
 
typedef unsigned int CharCode;
24
 
 
25
 
#endif