define [us]ptr_t properly for mingw64 compilation

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@58173 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2009-01-17 11:52:59 +00:00
parent c21dcf80f0
commit 3faece9438

View File

@@ -28,7 +28,11 @@ int Scintilla_LinkLexers();
#if defined(_MSC_VER) && _MSC_VER >= 1300
#include <BaseTsd.h>
#endif
#ifdef MAXULONG_PTR
#if defined(__MINGW64__)
#include <stdint.h>
typedef uint64_t uptr_t;
typedef int64_t sptr_t;
#elif defined(MAXULONG_PTR)
typedef ULONG_PTR uptr_t;
typedef LONG_PTR sptr_t;
#else