fix a stupid warrning on mingw

Steven Edwards steven_ed4153 at yahoo.com
Sat Jul 20 00:16:43 CDT 2002


I forgot to add this:

Changelog:
define to be long long. Using a typedef can
tweak bugs in the C++ parser.


--- Steven Edwards <steven_ed4153 at yahoo.com> wrote:
> cvs diff -u basetsd.h 
> Index: basetsd.h
> ===================================================================
> RCS file: /home/wine/wine/include/basetsd.h,v
> retrieving revision 1.5
> diff -u -r1.5 basetsd.h
> --- basetsd.h	29 May 2002 02:02:19 -0000	1.5
> +++ basetsd.h	19 Jul 2002 20:22:19 -0000
> @@ -44,7 +44,11 @@
>  typedef char      __int8;
>  typedef short     __int16;
>  typedef int       __int32;
> +#ifdef __MINGW__ 
> +#define __int64 long long
> +#else
>  typedef long long __int64;
> +#endif /* __MINGW__ */
>  #endif /* !defined(_MSC_VER) */
>  
>  typedef unsigned char      __uint8;
> 
> 
> __________________________________________________
> Do You Yahoo!?
> Yahoo! Autos - Get free new car price quotes
> http://autos.yahoo.com
> 


__________________________________________________
Do You Yahoo!?
Yahoo! Health - Feel better, live better
http://health.yahoo.com



More information about the wine-patches mailing list