From: Vadim Zeitlin <vadim@wxwidgets.org> Date: Sat, 17 Jan 2009 11:52:59 +0000 (+0000) Subject: define [us]ptr_t properly for mingw64 compilation X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/3faece94389e4b0db17fa987e163b6036ae1235e 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 --- diff --git a/src/stc/scintilla/include/Scintilla.h b/src/stc/scintilla/include/Scintilla.h index 6fde15267d..1c4beca699 100644 --- a/src/stc/scintilla/include/Scintilla.h +++ b/src/stc/scintilla/include/Scintilla.h @@ -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