2 * Compilers that uses ILP32, LP64 or P64 type models
3 * for both Win32 and Win64 are supported by this file.
7 * Modified for use with MPlayer, detailed CVS changelog at
8 * http://www.mplayerhq.hu/cgi-bin/cvsweb.cgi/main/
12 #ifndef __WINE_BASETSD_H
13 #define __WINE_BASETSD_H
17 #endif /* defined(__WINE__) */
21 #endif /* defined(__cplusplus) */
24 * Win32 was easy to implement under Unix since most (all?) 32-bit
25 * Unices uses the same type model (ILP32) as Win32, where int, long
26 * and pointer are 32-bit.
28 * Win64, however, will cause some problems when implemented under Unix.
29 * Linux/{Alpha, Sparc64} and most (all?) other 64-bit Unices uses
30 * the LP64 type model where int is 32-bit and long and pointer are
31 * 64-bit. Win64 on the other hand uses the P64 (sometimes called LLP64)
32 * type model where int and long are 32 bit and pointer is 64-bit.
35 /* Type model indepent typedefs */
37 #ifndef __INTEL_COMPILER
43 typedef unsigned char __uint8;
47 typedef short __int16;
50 typedef unsigned short __uint16;
57 typedef unsigned int __uint32;
61 typedef long long __int64;
64 typedef unsigned long long __uint64;
69 typedef unsigned __int8 __uint8;
70 typedef unsigned __int16 __uint16;
71 typedef unsigned __int32 __uint32;
72 typedef unsigned __int64 __uint64;
74 #endif /* __INTEL_COMPILER */
78 typedef __uint32 __ptr32;
79 typedef void *__ptr64;
81 #else /* FIXME: defined(_WIN32) */
83 typedef void *__ptr32;
84 typedef __uint64 __ptr64;
88 /* Always signed and 32 bit wide */
90 typedef __int32 LONG32;
91 //typedef __int32 INT32;
93 typedef LONG32 *PLONG32;
94 //typedef INT32 *PINT32;
96 /* Always unsigned and 32 bit wide */
98 typedef __uint32 ULONG32;
99 typedef __uint32 DWORD32;
100 typedef __uint32 UINT32;
102 typedef ULONG32 *PULONG32;
103 typedef DWORD32 *PDWORD32;
104 typedef UINT32 *PUINT32;
106 /* Always signed and 64 bit wide */
108 typedef __int64 LONG64;
109 typedef __int64 INT64;
111 typedef LONG64 *PLONG64;
112 typedef INT64 *PINT64;
114 /* Always unsigned and 64 bit wide */
116 typedef __uint64 ULONG64;
117 typedef __uint64 DWORD64;
118 typedef __uint64 UINT64;
120 typedef ULONG64 *PULONG64;
121 typedef DWORD64 *PDWORD64;
122 typedef UINT64 *PUINT64;
124 /* Win32 or Win64 dependent typedef/defines. */
128 typedef __int64 INT_PTR, *PINT_PTR;
129 typedef __uint64 UINT_PTR, *PUINT_PTR;
131 #define MAXINT_PTR 0x7fffffffffffffff
132 #define MININT_PTR 0x8000000000000000
133 #define MAXUINT_PTR 0xffffffffffffffff
135 typedef __int32 HALF_PTR, *PHALF_PTR;
136 typedef __int32 UHALF_PTR, *PUHALF_PTR;
138 #define MAXHALF_PTR 0x7fffffff
139 #define MINHALF_PTR 0x80000000
140 #define MAXUHALF_PTR 0xffffffff
142 typedef __int64 LONG_PTR, *PLONG_PTR;
143 typedef __uint64 ULONG_PTR, *PULONG_PTR;
144 typedef __uint64 DWORD_PTR, *PDWORD_PTR;
146 #else /* FIXME: defined(_WIN32) */
148 typedef __int32 INT_PTR, *PINT_PTR;
149 typedef __uint32 UINT_PTR, *PUINT_PTR;
151 #define MAXINT_PTR 0x7fffffff
152 #define MININT_PTR 0x80000000
153 #define MAXUINT_PTR 0xffffffff
155 typedef __int16 HALF_PTR, *PHALF_PTR;
156 typedef __uint16 UHALF_PTR, *PUHALF_PTR;
158 #define MAXUHALF_PTR 0xffff
159 #define MAXHALF_PTR 0x7fff
160 #define MINHALF_PTR 0x8000
162 typedef __int32 LONG_PTR, *PLONG_PTR;
163 typedef __uint32 ULONG_PTR, *PULONG_PTR;
164 typedef __uint32 DWORD_PTR, *PDWORD_PTR;
166 #endif /* defined(_WIN64) || defined(_WIN32) */
168 typedef INT_PTR SSIZE_T, *PSSIZE_T;
169 typedef UINT_PTR SIZE_T, *PSIZE_T;
173 #endif /* defined(__cplusplus) */
175 #endif /* !defined(__WINE_BASETSD_H) */