diff options
author | nyamatongwe <devnull@localhost> | 2003-09-27 03:58:02 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2003-09-27 03:58:02 +0000 |
commit | 369053daf6e959caa6fc496651f3cf2280e08b30 (patch) | |
tree | bb6767e849d9f0ac452c84c255626fac0e1f6d59 | |
parent | 50f59d4f370e29a50213f26cdb0e8087179a7210 (diff) | |
download | scintilla-mirror-369053daf6e959caa6fc496651f3cf2280e08b30.tar.gz |
Only supporting MINGW version 3.1.
-rw-r--r-- | win32/ScintillaWin.cxx | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/win32/ScintillaWin.cxx b/win32/ScintillaWin.cxx index 0d1993462..154c95192 100644 --- a/win32/ScintillaWin.cxx +++ b/win32/ScintillaWin.cxx @@ -60,25 +60,6 @@ #define UNICODE_NOCHAR 0xFFFF #endif -// These undefinitions are required to work around differences between different versions -// of the mingw headers, some of which define these twice, in both winuser.h and imm.h. -#ifdef __MINGW_H -#if __MINGW32_MAJOR_VERSION == 1 -#undef WM_IME_STARTCOMPOSITION -#undef WM_IME_ENDCOMPOSITION -#undef WM_IME_COMPOSITION -#undef WM_IME_KEYLAST -#undef WM_IME_SETCONTEXT -#undef WM_IME_NOTIFY -#undef WM_IME_CONTROL -#undef WM_IME_COMPOSITIONFULL -#undef WM_IME_SELECT -#undef WM_IME_CHAR -#undef WM_IME_KEYDOWN -#undef WM_IME_KEYUP -#endif -#endif - #ifndef WM_IME_STARTCOMPOSITION #include <imm.h> #endif |