summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-12-23 18:20:51 +0000
committerUoti Urpala <uau@glyph.nonexistent.invalid>2011-01-29 04:05:28 +0200
commit7c87946c69ac0354cda5dfc3c2457bf0326d1eb8 (patch)
tree40dc57b335f8358188c272bc6f035495ddf3b824
parentc46bd9a252d8363c0c88e84f29d2095795481c35 (diff)
downloadmpv-7c87946c69ac0354cda5dfc3c2457bf0326d1eb8.tar.bz2
mpv-7c87946c69ac0354cda5dfc3c2457bf0326d1eb8.tar.xz
loader: 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 its _mingw.h has a "#define __ptr32", which makes these typedefs an invalid syntax. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32728 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r--loader/wine/basetsd.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/loader/wine/basetsd.h b/loader/wine/basetsd.h
index 0ec90a9aeb..c1baf7fbd1 100644
--- a/loader/wine/basetsd.h
+++ b/loader/wine/basetsd.h
@@ -66,18 +66,6 @@ typedef unsigned __int64 __uint64;
#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;