URL
https://opencores.org/ocsvn/or1k_old/or1k_old/trunk
Subversion Repositories or1k_old
[/] [or1k_old/] [trunk/] [insight/] [tix/] [unix/] [tixUnixPort.h] - Rev 578
Go to most recent revision | Compare with Previous | Blame | View Log
/* * 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_ */
Go to most recent revision | Compare with Previous | Blame | View Log