aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2021-03-19 09:23:09 +1100
committerNeil <nyamatongwe@gmail.com>2021-03-19 09:23:09 +1100
commit721d52df9cb90af8d1545093a2304023f1affd14 (patch)
tree1a3e495dd5f055a646af55027c6af58d9665f0d2 /include
parent35d3f2be76c7075bf106a246544a002d03a5d042 (diff)
downloadscintilla-mirror-721d52df9cb90af8d1545093a2304023f1affd14.tar.gz
Add SupportsFeature API but leave empty for now with no features defined.
Diffstat (limited to 'include')
-rw-r--r--include/Scintilla.h1
-rw-r--r--include/Scintilla.iface5
2 files changed, 6 insertions, 0 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h
index ca79dc7af..0e61d0bbc 100644
--- a/include/Scintilla.h
+++ b/include/Scintilla.h
@@ -1018,6 +1018,7 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam,
#define SCI_EOLANNOTATIONGETVISIBLE 2746
#define SCI_EOLANNOTATIONSETSTYLEOFFSET 2747
#define SCI_EOLANNOTATIONGETSTYLEOFFSET 2748
+#define SCI_SUPPORTSFEATURE 2750
#define SCI_STARTRECORD 3001
#define SCI_STOPRECORD 3002
#define SCI_GETLEXER 4002
diff --git a/include/Scintilla.iface b/include/Scintilla.iface
index eea7a4336..1fca9bf32 100644
--- a/include/Scintilla.iface
+++ b/include/Scintilla.iface
@@ -2875,6 +2875,11 @@ set void EOLAnnotationSetStyleOffset=2747(int style,)
# Get the start of the range of style numbers used for end of line annotations
get int EOLAnnotationGetStyleOffset=2748(,)
+enu Supports=SC_SUPPORTS_
+
+# Get whether a feature is supported
+get int SupportsFeature=2750(Supports feature,)
+
# Start notifying the container of all key presses and commands.
fun void StartRecord=3001(,)