# HG changeset patch # User reimar # Date 1293128451 0 # Node ID a2822f8f5e6d5877d32e2407fc6df6ac7e455664 # Parent 982ff6ad6e908210bcc9973b957b1c6e00564dc2 Remove __ptr32 and __ptr64 typedefs, we do not need them and they cause compilation errors with cygwin's mingw-w64 cross-compilers (32 bit target) since it its _mingw.h has a "#define __ptr32", which makes these typedefs an invalid syntax. diff -r 982ff6ad6e90 -r a2822f8f5e6d loader/wine/basetsd.h --- a/loader/wine/basetsd.h Thu Dec 23 18:11:54 2010 +0000 +++ b/loader/wine/basetsd.h Thu Dec 23 18:20:51 2010 +0000 @@ -66,18 +66,6 @@ #endif /* __INTEL_COMPILER */ -#if defined(_WIN64) - -//typedef __uint32 __ptr32; -//typedef void *__ptr64; - -#else /* FIXME: defined(_WIN32) */ - -typedef void *__ptr32; -typedef __uint64 __ptr64; - -#endif - /* Always signed and 32 bit wide */ typedef __int32 LONG32;