summaryrefslogtreecommitdiff
path: root/tix/unix/tixUnixPort.h
blob: 56356915430adeda9d5bca293f28bd04b26649c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*
 * tixUnixPort.h --
 *
 *	This header file handles porting issues that occur because of
 *	differences between systems.  It reads in platform specific
 *	portability files.
 *
 * Copyright (c) 1996, Expert Interface Technologies
 *
 * See the file "license.terms" for information on usage and redistribution
 * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
 *
 */

#ifndef _TIX_UNIXPORT_H_
#define _TIX_UNIXPORT_H_

struct _TixpSubRegion {
    XRectangle rect;
    int rectUsed;
};

#ifdef UCHAR_SUPPORTED
typedef unsigned char UNSIGNED_CHAR;
#else
typedef char UNSIGNED_CHAR;
#endif

#endif /* _TIX_UNIXPORT_H_ */