aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authornyamatongwe <unknown>2003-08-08 07:55:46 +0000
committernyamatongwe <unknown>2003-08-08 07:55:46 +0000
commitdfd2abbc59e8fd3b70a9d7dcc7e95b39bb288981 (patch)
tree8aaff895c43d5752564c407352796d669f312eac /include
parent7d2d6a0620eeecd553842d532922bb993779872c (diff)
downloadscintilla-mirror-dfd2abbc59e8fd3b70a9d7dcc7e95b39bb288981.tar.gz
Added a constant for the number of keyword sets.
Diffstat (limited to 'include')
-rw-r--r--include/Scintilla.h1
-rw-r--r--include/Scintilla.iface3
2 files changed, 4 insertions, 0 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h
index 99735edfe..34893c893 100644
--- a/include/Scintilla.h
+++ b/include/Scintilla.h
@@ -547,6 +547,7 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam,
#define SCI_GETLEXER 4002
#define SCI_COLOURISE 4003
#define SCI_SETPROPERTY 4004
+#define KEYWORDSET_MAX 8
#define SCI_SETKEYWORDS 4005
#define SCI_SETLEXERLANGUAGE 4006
#define SCI_LOADLEXERLIBRARY 4007
diff --git a/include/Scintilla.iface b/include/Scintilla.iface
index 853226882..d33b24ac3 100644
--- a/include/Scintilla.iface
+++ b/include/Scintilla.iface
@@ -1477,6 +1477,9 @@ fun void Colourise=4003(position start, position end)
# Set up a value that may be used by a lexer for some optional feature.
set void SetProperty=4004(string key, string value)
+# Maximum value of keywordSet parameter of SetKeyWords.
+val KEYWORDSET_MAX=8
+
# Set up the key words used by the lexer.
set void SetKeyWords=4005(int keywordSet, string keyWords)