diff options
author | nyamatongwe <devnull@localhost> | 2000-06-11 07:29:25 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2000-06-11 07:29:25 +0000 |
commit | 9e1811c18ff338d2a450da06209dc8ae7004581b (patch) | |
tree | 392ad982a7046357e6fe7b5344808691c48ae723 /include/Scintilla.h | |
parent | dd4025598b4b96cadae48420b698028d67958423 (diff) | |
download | scintilla-mirror-9e1811c18ff338d2a450da06209dc8ae7004581b.tar.gz |
Added character set codes.
Diffstat (limited to 'include/Scintilla.h')
-rw-r--r-- | include/Scintilla.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h index 2ae3b03c8..a74ad08d7 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -162,7 +162,23 @@ extern "C" { #define SC_CHARSET_ANSI 0 #define SC_CHARSET_DEFAULT 1 +#define SC_CHARSET_BALTIC 186 +#define SC_CHARSET_CHINESEBIG5 136 +#define SC_CHARSET_EASTEUROPE 238 +#define SC_CHARSET_GB2312 134 +#define SC_CHARSET_GREEK 161 +#define SC_CHARSET_HANGUL 129 +#define SC_CHARSET_MAC 77 +#define SC_CHARSET_OEM 255 #define SC_CHARSET_RUSSIAN 204 +#define SC_CHARSET_SHIFTJIS 128 +#define SC_CHARSET_SYMBOL 2 +#define SC_CHARSET_TURKISH 162 +#define SC_CHARSET_JOHAB 130 +#define SC_CHARSET_HEBREW 177 +#define SC_CHARSET_ARABIC 178 +#define SC_CHARSET_VIETNAMESE 163 +#define SC_CHARSET_THAI 222 #define SCI_STYLECLEARALL SCI_START + 50 #define SCI_STYLESETFORE SCI_START + 51 |