cygwin "fastcall" warnings
Hi, Compiling cvs version gives many times the same warning, located in loader/wine/windef.h. at line 133 & 134, _fastcall and __fastcall are redefined. this seems to be useless, so as the redefine of _stdcall at line 131 : 130 #if !defined(__CYGWIN__) 131 #define _stdcall __stdcall 132 #endif 133 #define _fastcall __stdcall 134 #define __fastcall __stdcall the 133 & 134 can be moved in the #if. ___________________________________________________________ Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français ! Yahoo! Mail : http://fr.mail.yahoo.com Index: windef.h =================================================================== RCS file: /cvsroot/mplayer/main/loader/wine/windef.h,v retrieving revision 1.7 diff -u -r1.7 windef.h --- windef.h 4 Jun 2002 20:11:15 -0000 1.7 +++ windef.h 24 Jul 2002 01:31:38 -0000 @@ -129,9 +129,9 @@ #define _pascal __stdcall #if !defined(__CYGWIN__) #define _stdcall __stdcall -#endif #define _fastcall __stdcall #define __fastcall __stdcall +#endif #define __export __stdcall #define CDECL __cdecl #define _CDECL __cdecl
Hi,
Compiling cvs version gives many times the same warning, located in loader/wine/windef.h.
at line 133 & 134, _fastcall and __fastcall are redefined. this seems to be useless, so as the redefine of _stdcall at line 131 :
130 #if !defined(__CYGWIN__) 131 #define _stdcall __stdcall 132 #endif 133 #define _fastcall __stdcall 134 #define __fastcall __stdcall
the 133 & 134 can be moved in the #if.
On Wednesday 24 July 2002 03:27, Sylvain Petreolle wrote: thx, applied. -- Best Regards, Atmos ____________________________________________ - MPlayer Developer - http://mplayerhq.hu/ - ____________________________________________
participants (2)
-
Felix Buenemann -
Sylvain Petreolle