diff options
author | nyamatongwe <devnull@localhost> | 2001-10-28 01:28:28 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2001-10-28 01:28:28 +0000 |
commit | 32056de116bf65368ccff2e887d29fbf81075bed (patch) | |
tree | 493a0791cb7757d3e8397e242eef5c4f764a5aee /win32/ExternalLexer.cxx | |
parent | 8320a969df7367a3f62ea1c26929c7d03cda2549 (diff) | |
download | scintilla-mirror-32056de116bf65368ccff2e887d29fbf81075bed.tar.gz |
Removed platform-specific headers from Platform.h and thus stopped
visibility of these headers to most code.
Diffstat (limited to 'win32/ExternalLexer.cxx')
-rw-r--r-- | win32/ExternalLexer.cxx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/win32/ExternalLexer.cxx b/win32/ExternalLexer.cxx index 77c235940..015f9b6af 100644 --- a/win32/ExternalLexer.cxx +++ b/win32/ExternalLexer.cxx @@ -9,8 +9,11 @@ #include <stdio.h> #include <ctype.h> -#include "SciLexer.h" +#define _WIN32_WINNT 0x0400 +#include <windows.h> + #include "Platform.h" +#include "SciLexer.h" #include "PropSet.h" #include "Accessor.h" #include "DocumentAccessor.h" |