]> git.saurik.com Git - wxWidgets.git/commitdiff
use basetsd.h for non-MSVC compilers (including mingw32 too), replaces the previous fix
authorVadim Zeitlin <vadim@wxwidgets.org>
Mon, 19 Jan 2009 14:43:09 +0000 (14:43 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Mon, 19 Jan 2009 14:43:09 +0000 (14:43 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@58230 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/stc/scintilla/include/Scintilla.h

index 1c4beca699f04dbb82304543e9ed5c4af492e366..3201d16806749e9eab3a111c1e9b222b30e7f504 100644 (file)
@@ -25,14 +25,10 @@ int Scintilla_LinkLexers();
 // Here should be placed typedefs for uptr_t, an unsigned integer type large enough to
 // hold a pointer and sptr_t, a signed integer large enough to hold a pointer.
 // May need to be changed for 64 bit platforms.
-#if defined(_MSC_VER) && _MSC_VER >= 1300
+#ifdef _WIN32
 #include <BaseTsd.h>
 #endif
-#if defined(__MINGW64__)
-#include <stdint.h>
-typedef uint64_t uptr_t;
-typedef int64_t sptr_t;
-#elif defined(MAXULONG_PTR)
+#ifdef MAXULONG_PTR
 typedef ULONG_PTR uptr_t;
 typedef LONG_PTR sptr_t;
 #else