diff options
author | nyamatongwe <devnull@localhost> | 2009-01-22 05:01:27 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2009-01-22 05:01:27 +0000 |
commit | 3a432c10247b0be0e548e2012108707b6e8142d7 (patch) | |
tree | 4642623a097798b665b4ce5acc360ff197fc5702 /include/Scintilla.h | |
parent | b3b4607da3847266039dfc420502be33d76a159e (diff) | |
download | scintilla-mirror-3a432c10247b0be0e548e2012108707b6e8142d7.tar.gz |
Enable 64 bit support on Windows for all compilers.
Diffstat (limited to 'include/Scintilla.h')
-rw-r--r-- | include/Scintilla.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h index d3944515f..c4188337e 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -25,7 +25,7 @@ int Scintilla_LinkLexers(); /* Here should be placed typedefs for uptr_t, an unsigned integer type large enough to * hold a pointer and sptr_t, a signed integer large enough to hold a pointer. * May need to be changed for 64 bit platforms. */ -#if _MSC_VER >= 1300 +#if defined(_WIN32) #include <BaseTsd.h> #endif #ifdef MAXULONG_PTR |