mirror of https://github.com/mpv-player/mpv
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:
parent
d9d93cba85
commit
c2a4be43c7
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue