diff options
author | nyamatongwe <unknown> | 2012-07-24 15:29:48 +1000 |
---|---|---|
committer | nyamatongwe <unknown> | 2012-07-24 15:29:48 +1000 |
commit | b74d888e9d72a7a61295dccfee1f07465f5be867 (patch) | |
tree | fb958dd1e96d6451555c8fdb0730ed7c2d02ca89 /include/Platform.h | |
parent | 124855efe9f3d44625552854cf618a64613fe8c8 (diff) | |
download | scintilla-mirror-b74d888e9d72a7a61295dccfee1f07465f5be867.tar.gz |
Add ncurses platform. Rest of the implementation is an external project.
From Mitchell Foral.
Diffstat (limited to 'include/Platform.h')
-rw-r--r-- | include/Platform.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/Platform.h b/include/Platform.h index 1b5dfbe3d..70a9cccb3 100644 --- a/include/Platform.h +++ b/include/Platform.h @@ -22,6 +22,7 @@ #define PLAT_WX 0 #define PLAT_QT 0 #define PLAT_FOX 0 +#define PLAT_NCURSES 0 #if defined(FOX) #undef PLAT_FOX @@ -31,6 +32,10 @@ #undef PLAT_WX #define PLAT_WX 1 +#elif defined(NCURSES) +#undef PLAT_NCURSES +#define PLAT_NCURSES 1 + #elif defined(SCINTILLA_QT) #undef PLAT_QT #define PLAT_QT 1 |