blob: 6c71160c756cdc930e4dd1bfce63bcd15aa82499 (
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
30
31
32
33
34
35
36
37
38
39
40
|
/* $Id: tixWinPort.h,v 1.1.1.1 2000/05/17 11:08:55 idiscovery Exp $ */
/*
* tixWinPort.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_WINPORT_H_
#define _TIX_WINPORT_H_
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <sys/stat.h>
#include <sys/timeb.h>
#include <time.h>
#include <io.h>
#include <fcntl.h>
#define WIN32_LEAN_AND_MEAN
# ifndef __PM__
# include <windows.h>
# endif
#undef WIN32_LEAN_AND_MEAN
typedef unsigned char UNSIGNED_CHAR;
#endif /* _TIX_WINPORT_H_ */
|