upgrade to xpdf 3.00.
[swftools.git] / pdf2swf / xpdf / gtypes.h
blob9f64f57d4a1c3439a0e4e04d569577a662f42f9b
1 /*
2 * gtypes.h
4 * Some useful simple types.
6 * Copyright 1996-2003 Glyph & Cog, LLC
7 */
9 #ifndef GTYPES_H
10 #define GTYPES_H
13 * These have stupid names to avoid conflicts with some (but not all)
14 * C++ compilers which define them.
16 typedef int GBool;
17 #define gTrue 1
18 #define gFalse 0
21 * These have stupid names to avoid conflicts with <sys/types.h>,
22 * which on various systems defines some random subset of these.
24 typedef unsigned char Guchar;
25 typedef unsigned short Gushort;
26 typedef unsigned int Guint;
27 typedef unsigned long Gulong;
29 #endif