diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-07-12 12:31:13 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-07-12 12:31:13 +0000 |
commit | ecde3c9f3e46a78f653829f8b12241dc7fbe9fb2 (patch) | |
tree | 2da90cafcf53ca75af95ae22c8e9269a55447e4b /src/libw32dll/wine/basetsd.h | |
parent | 7329ae3b83a71b6bc9b55c659a582afb307acd08 (diff) | |
download | xine-lib-ecde3c9f3e46a78f653829f8b12241dc7fbe9fb2.tar.gz xine-lib-ecde3c9f3e46a78f653829f8b12241dc7fbe9fb2.tar.bz2 |
- adding support for the Intel compiler icc
- general multipass compilation make targets
CVS patchset: 5149
CVS date: 2003/07/12 12:31:13
Diffstat (limited to 'src/libw32dll/wine/basetsd.h')
-rw-r--r-- | src/libw32dll/wine/basetsd.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/libw32dll/wine/basetsd.h b/src/libw32dll/wine/basetsd.h index 7b5d3aba9..ac988d54b 100644 --- a/src/libw32dll/wine/basetsd.h +++ b/src/libw32dll/wine/basetsd.h @@ -28,16 +28,16 @@ extern "C" { /* Type model indepent typedefs */ +#ifndef __ICC typedef char __int8; -typedef unsigned char __uint8; - -typedef short __int16; -typedef unsigned short __uint16; - -typedef int __int32; -typedef unsigned int __uint32; +typedef short __int16; +typedef int __int32; +typedef long long __int64; +#endif -typedef long long __int64; +typedef unsigned char __uint8; +typedef unsigned short __uint16; +typedef unsigned int __uint32; typedef unsigned long long __uint64; #if defined(_WIN64) |