summaryrefslogtreecommitdiff
path: root/tix/unix/tixUnixPort.h
diff options
context:
space:
mode:
Diffstat (limited to 'tix/unix/tixUnixPort.h')
-rw-r--r--tix/unix/tixUnixPort.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/tix/unix/tixUnixPort.h b/tix/unix/tixUnixPort.h
new file mode 100644
index 00000000000..56356915430
--- /dev/null
+++ b/tix/unix/tixUnixPort.h
@@ -0,0 +1,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_ */