From: Vadim Zeitlin Date: Mon, 20 Apr 2009 23:42:04 +0000 (+0000) Subject: include windows.h instead of basetsd.h directly as this doesn't seem to be supported... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/5001d2432b8be1c4716942dc4fc27c4c247df233 include windows.h instead of basetsd.h directly as this doesn't seem to be supported by mingw64 git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@60261 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/stc/scintilla/include/Scintilla.h b/src/stc/scintilla/include/Scintilla.h index 29b8c32391..36aed76b8e 100644 --- a/src/stc/scintilla/include/Scintilla.h +++ b/src/stc/scintilla/include/Scintilla.h @@ -26,7 +26,7 @@ int Scintilla_LinkLexers(); // hold a pointer and sptr_t, a signed integer large enough to hold a pointer. // May need to be changed for 64 bit platforms. #ifdef _WIN32 -#include +#include #endif #ifdef MAXULONG_PTR typedef ULONG_PTR uptr_t;