]> git.ipfire.org Git - thirdparty/cups.git/blame - pdftops/gtypes.h
Merge changes from CUPS 1.4svn-r7199.
[thirdparty/cups.git] / pdftops / gtypes.h
CommitLineData
ef416fc2 1/*
2 * gtypes.h
3 *
4 * Some useful simple types.
5 *
6 * Copyright 1996-2003 Glyph & Cog, LLC
7 */
8
9#ifndef GTYPES_H
10#define GTYPES_H
11
12/*
13 * These have stupid names to avoid conflicts with some (but not all)
14 * C++ compilers which define them.
15 */
16typedef int GBool;
17#define gTrue 1
18#define gFalse 0
19
20/*
21 * These have stupid names to avoid conflicts with <sys/types.h>,
22 * which on various systems defines some random subset of these.
23 */
24typedef unsigned char Guchar;
25typedef unsigned short Gushort;
26typedef unsigned int Guint;
27typedef unsigned long Gulong;
28
29#endif