icc support by Darek Ostolski <ostolski at kwantum dot gda dot pl>

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14493 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2005-01-14 00:14:45 +00:00
parent d9d93cba85
commit c2a4be43c7
1 changed files with 11 additions and 0 deletions

View File

@ -28,6 +28,8 @@ extern "C" {
/* Type model indepent typedefs */
#ifndef __INTEL_COMPILER
typedef char __int8;
typedef unsigned char __uint8;
@ -40,6 +42,15 @@ typedef unsigned int __uint32;
typedef long long __int64;
typedef unsigned long long __uint64;
#else
typedef unsigned __int8 __uint8;
typedef unsigned __int16 __uint16;
typedef unsigned __int32 __uint32;
typedef unsigned __int64 __uint64;
#endif /* __INTEL_COMPILER */
#if defined(_WIN64)
typedef __uint32 __ptr32;