diff options
| author | nyamatongwe <devnull@localhost> | 2012-07-17 19:38:23 +1000 |
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2012-07-17 19:38:23 +1000 |
| commit | 6fb1f1659c965bf963637dc9e0de38ff2607734a (patch) | |
| tree | 64a2d12e2c1a623ed406a82463384b81aa7e331f /win32/PlatWin.cxx | |
| parent | 320387a42d5777d29c5f439841f00f84bd51be48 (diff) | |
| download | scintilla-mirror-6fb1f1659c965bf963637dc9e0de38ff2607734a.tar.gz | |
Refine checking for Direct2D and DirectWrite by using NTDDI_WIN7 to indicate
a recent SDK and allow disabling Direct2D by defining DISABLE_D2D.
Run a test compile of a file that includes these headers and use compilation
failure to disable Direct2D.
Diffstat (limited to 'win32/PlatWin.cxx')
| -rw-r--r-- | win32/PlatWin.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/PlatWin.cxx b/win32/PlatWin.cxx index 507567bb8..723995407 100644 --- a/win32/PlatWin.cxx +++ b/win32/PlatWin.cxx @@ -26,7 +26,7 @@ #include <richedit.h> #include <windowsx.h> -#if defined(_MSC_VER) && (_MSC_VER > 1200) +#if defined(NTDDI_WIN7) && !defined(DISABLE_D2D) #define USE_D2D 1 #endif |
