Raphael fenix@club-internet.fr writes:
--- dinput.h 5 Oct 2004 04:38:15 -0000 1.46 +++ dinput.h 10 Mar 2005 22:13:43 -0000 @@ -640,7 +640,9 @@ DWORD dwData; DWORD dwTimeStamp; DWORD dwSequence; +#if(DIRECTINPUT_VERSION >= 0x0800) UINT_PTR uAppData; +#endif
As a rule we avoid that sort of thing in Wine (I know there are other such #ifs in that file but they should be removed). It makes no difference for binary compatibility, and it's very unlikely that an app would depend on it at the source level, so it's not worth the extra headaches.