diff options
author | nyamatongwe <devnull@localhost> | 2002-01-11 03:24:22 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2002-01-11 03:24:22 +0000 |
commit | f9c570d34fbf2098f7eac0d8e66c4cbdd940825c (patch) | |
tree | da09fe1a418f517067736027bcee8d83ca59f5cc | |
parent | 56bc2a4a7d5eb42539c1a46cfaa51c4ee6419cdd (diff) | |
download | scintilla-mirror-f9c570d34fbf2098f7eac0d8e66c4cbdd940825c.tar.gz |
Initial minimal support for the Fox version.
-rw-r--r-- | include/Platform.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/include/Platform.h b/include/Platform.h index 2d082053b..634792960 100644 --- a/include/Platform.h +++ b/include/Platform.h @@ -18,8 +18,13 @@ #define PLAT_GTK_WIN32 0 #define PLAT_WIN 0 #define PLAT_WX 0 +#define PLAT_FOX 0 -#if defined(__WX__) +#if defined(FOX) +#undef PLAT_FOX +#define PLAT_FOX 1 + +#elif defined(__WX__) #undef PLAT_WX #define PLAT_WX 1 |