#if out some "strange" __ROS_LONG64__ definition for (U)INT_PTR, as it doesn't make...
authorTimo Kreuzer <timo.kreuzer@reactos.org>
Sun, 8 Feb 2009 03:40:38 +0000 (03:40 +0000)
committerTimo Kreuzer <timo.kreuzer@reactos.org>
Sun, 8 Feb 2009 03:40:38 +0000 (03:40 +0000)
svn path=/trunk/; revision=39470

reactos/include/psdk/basetsd.h

index 37f6845..58e04a6 100644 (file)
@@ -99,10 +99,10 @@ static inline void* ULongToPtr( const unsigned long ul )
     { return( (void*)(ULONG_PTR)ul ); }
 #endif /* !__midl */
 #else /*  !_WIN64 */
-#if !defined(__ROS_LONG64__)
+#if 1// !defined(__ROS_LONG64__)
 typedef int INT_PTR, *PINT_PTR;
 typedef unsigned int UINT_PTR, *PUINT_PTR;
-#else
+#else // WTF??? HACK of break
 typedef long INT_PTR, *PINT_PTR;
 typedef unsigned long UINT_PTR, *PUINT_PTR;
 #endif