[MPlayer-cvslog] CVS: main/loader/wine basetsd.h,1.3,1.4

Sascha Sommer CVS syncmail at mplayerhq.hu
Tue Jun 7 15:54:19 CEST 2005


CVS change done by Sascha Sommer CVS

Update of /cvsroot/mplayer/main/loader/wine
In directory mail:/var2/tmp/cvs-serv28401/loader/wine

Modified Files:
	basetsd.h 
Log Message:
mingw and maybe other system define the __int* types to char, short..., so the typedefs become typedef char char; etc.

Index: basetsd.h
===================================================================
RCS file: /cvsroot/mplayer/main/loader/wine/basetsd.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- basetsd.h	15 Apr 2005 20:17:14 -0000	1.3
+++ basetsd.h	7 Jun 2005 13:54:17 -0000	1.4
@@ -36,17 +36,33 @@
 
 #ifndef __INTEL_COMPILER
 
+#ifndef __int8
 typedef char          __int8;
+#endif
+#ifndef __uint8
 typedef unsigned char __uint8;
+#endif
 
+#ifndef __int16
 typedef short          __int16;
+#endif
+#ifndef __uint16
 typedef unsigned short __uint16;
+#endif
 
+#ifndef __int32
 typedef int          __int32;
+#endif
+#ifndef __uint32
 typedef unsigned int __uint32;
+#endif
 
+#ifndef __int64
 typedef long long          __int64;
+#endif
+#ifndef __uint64
 typedef unsigned long long __uint64;
+#endif
 
 #else
 




More information about the MPlayer-cvslog mailing list